jquery实现input输入框实时输入触发事件代码

<input id="productName" name="productName" class="wid10" type="text" value="" /> 

 

//绑定商品名称联想
$('#productName').bind('input propertychange', function() {searchProductClassbyName();}); 

 

searchProductClassbyName 为触发后调用的方法; 

 jquery实现input输入框实时输入触发事件代码_第1张图片

你可能感兴趣的:(jquery实现input输入框实时输入触发事件代码)