标签:io sp on cti bs app jquery 方法 nbsp
//初步认识,方式一:不管也面有没有这个标签(或者操作之后才出来这些标签),都能绑定上
$(document).on("click","a.btn-ScheduluePD", function(){
alert("look");
});
//相对于上面的绑定,如果页面中没有这个标签,是之后才出来,必须append出来之后绑定,否则绑定不上!
$("a.btn-ScheduluePD").on("click",function(){
alert("test");
});
以上有待确认...
标签:io sp on cti bs app jquery 方法 nbsp
原文地址:http://www.cnblogs.com/specification/p/4028617.html