火我得到了以下的jQuery代碼:jQuery的不通過.change
$('.sub').change(function(event) {
$.post('get_products.php', $("#products_search").serialize(),
function(data) {
console.log(data);
},
'json'
);
});
,並有像
<input type="text" name="lkj" id="lkj" class="sub" value="" onfocus="if(this.value == 'Search keyword') {this.value=''}" onblur="if(this.value == ''){this.value ='Search keyword'}" />
表單字段是這樣的:
<form action="#" method="POST" name="products_search" id="products_search">
的但是,當我更改lkj中的值時,jquery ajax調用不會觸發。
任何javascript錯誤? – Jrod
沒有遺憾:( – bicycle
你可以在小提琴中顯示錯誤嗎? – Starx