工作,這是我的jQuery代碼:模糊()事件不會對我
$('input[name="Search"]').blur(function(e) {
$(this).text('');
});
而我的HTML片段:
<input name="Search" type="text" id="Search" class="MainMenu" />
但它不工作,沒有任何人知道爲什麼嗎?
工作,這是我的jQuery代碼:模糊()事件不會對我
$('input[name="Search"]').blur(function(e) {
$(this).text('');
});
而我的HTML片段:
<input name="Search" type="text" id="Search" class="MainMenu" />
但它不工作,沒有任何人知道爲什麼嗎?
嘗試.val()
與其使用.text()
$('input[name="Search"]').blur(function(e) {
$(this).val('');
});
有像.text()
輸入型文本都沒法使用.val()
這些變化將幫助你
$('input[name="Search"]').blur(function(e) {
$(this).val('');
});
或
$('#Search').blur(function(e) {
$(this).val('');
});
爲什麼downvoted ?! – Victor
我沒有投票,但顯示HTML將有助於排序問題 – Adil
你想空白搜索框上的文本模糊? – Hkachhia