Cara Mengambil Perkataan Di Bawah Kursor dengan JavaScript
Tentukan perkataan yang dilegarkan oleh kursor tetikus ialah tugas penting untuk teks -aplikasi berasaskan. Katakan anda mempunyai halaman HTML dengan perenggan teks:
<code class="html"><p> some long text </p></code>
Bagaimanakah anda boleh mengenal pasti bahawa kursor diletakkan di atas perkataan "teks"? Artikel ini membentangkan penyelesaian yang memenuhi keperluan khusus untuk Chrome (dan mungkin Firefox).
Pelaksanaan JavaScript:
<code class="javascript">function getWordAtPoint(elem, x, y) { if (elem.nodeType == elem.TEXT_NODE) { // Create a range and position it within the element's text content var range = elem.ownerDocument.createRange(); range.selectNodeContents(elem); // Initialize position variables var currentPos = 0; var endPos = range.endOffset; // Iterate through the text content while (currentPos + 1 < endPos) { // Update the range to select a single character range.setStart(elem, currentPos); range.setEnd(elem, currentPos + 1); // Check if the character's bounding rectangle contains the cursor position if ( range.getBoundingClientRect().left <= x && range.getBoundingClientRect().right >= x && range.getBoundingClientRect().top <= y && range.getBoundingClientRect().bottom >= y ) { // Expand the range to select the word range.expand("word"); var ret = range.toString(); range.detach(); return ret; } // Advance the current position currentPos += 1; } } else { // For elements with child nodes (e.g., <p>, <div>), iterate through their children for (var i = 0; i < elem.childNodes.length; i++) { // Create a range and position it within the child node's text content var range = elem.childNodes[i].ownerDocument.createRange(); range.selectNodeContents(elem.childNodes[i]); // Check if the child node's bounding rectangle contains the cursor position if ( range.getBoundingClientRect().left <= x && range.getBoundingClientRect().right >= x && range.getBoundingClientRect().top <= y && range.getBoundingClientRect().bottom >= y ) { // Recursively call getWordAtPoint on the child node range.detach(); return getWordAtPoint(elem.childNodes[i], x, y); } else { range.detach(); } } } return null; }</code>
Penggunaan:
Dalam pengendali acara untuk acara mousemove anda, anda boleh menggunakan fungsi getWordAtPoint() seperti berikut:
<code class="javascript">getWordAtPoint(e.target, e.x, e.y);</code>
Atas ialah kandungan terperinci Bagaimana untuk Mendapatkan Perkataan di Bawah Kursor Tetikus dengan JavaScript?. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!