change和onChange

change是jquery上的绑定事件,可用于下拉框动态关联数据:

$(function(){

  $("#id").change(function(e){

    alert($(this));

  });  

});

<input  id="sdf" name="#" value="3" onChange="fun(this)"/>

function fun(e){

  alert($(e));

}

posted @ 2019-03-20 11:12  笔记Next  阅读(1234)  评论(0编辑  收藏  举报