Rumah > Soal Jawab > teks badan
P粉4733635272023-09-03 19:48:23
Gunakan CSS untuk menunjukkan limpahan teks, seperti .... (elipsis) dan gunakan atribut title untuk menunjukkan kandungan penuh pada tuding, seperti pop timbul
<script setup> import { ref } from 'vue' const msg = ref('Hello World! too much content in this text field component to display') </script> <template> <h1 :title=msg>{{ msg }}</h1> <input v-model="msg"> </template> <style> h1{ max-width: 15rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } </style>
P粉3421016522023-09-03 09:39:26
Dengan mengubah suai kod anda, saya berjaya membandingkan clientWidth
和scrollWidth
kotak teks.
1- Dihapuskan field
sebut harga.
2- Menambah id pada v-text-field
.
3- Menambah fungsi panggil balik check
函数,并在watch
untuk memanggilnya.
4- Di dalam fungsi check
, saya telah menyemak check
函数内部,我检查了输入框的clientWidth
和scrollWidth
kotak input.
5- Untuk menjalankannya pada beban awal, saya menetapkan msg
pada rentetan kosong dan menukarnya kepada rentetan mentah di bahagian bawah skrip.
Lihat di sini: Di sini
<script setup> import { ref, watch } from 'vue' const msg = ref("") const isCuttingOff = ref(false) function check() { const elm = document.querySelector('#txt') isCuttingOff.value = elm.clientWidth < elm.scrollWidth; // todo : custom tooltip or any other solution for long texts } watch( msg, (currentMsg, oldMessage, callback) => { callback(check) }, { immediate: true } ) msg.value = 'Hello World! too much content in this text cfield component to display.' </script> <script></script> <template> <v-app> <div class="text-h3">Is cutting off: {{ isCuttingOff }}</div> <v-container class="w-25"> <v-text-field id="txt" v-model="msg" /> </v-container> </v-app> </template>