兩種方法:1、使用css()設定遊標顏色樣式,語法「元素.css("caret-color","transparent")」;2、用attr(),語法「元素. attr("style","caret-color:transparent")」。
本教學操作環境:windows7系統、jquery3.2.1版本、Dell G3電腦。
在HTML中,可以透過將遊標顏色設定為透明,即添加caret-color:transparent;
樣式來讓遊標消失;
下面介紹jquery設定透明遊標的兩種方法。
方法1:使用css()直接設定caret-color屬性
css() 方法設定或傳回被選元素的一個或多個樣式屬性。
只需將caret-color屬性的值設為transparent即可。
元素对象.css("caret-color","transparent");
範例:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <script src="js/jquery-3.2.1.min.js"></script> <script> $(document).ready(function() { $("button").click(function() { $("input").css("caret-color","transparent"); }); }); </script> </head> <body> <input type="text" /><br><br> <button>让光标消失</button> </body> </html>
2、使用attr()設定style屬性,新增caret-color:transparent;樣式
attr()可以設定元素屬性。
只需設定style屬性,加入caret-color:transparent;行內樣式。
範例:
$(document).ready(function() { $("button").click(function() { $("input").attr("style","caret-color:transparent"); }); });
【推薦學習:jQuery影片教學、web前端影片】
以上是jquery怎麼讓遊標消失的詳細內容。更多資訊請關注PHP中文網其他相關文章!