これは私の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('');
});