动态获取添加绑定事件

Apple

Banana

Corp

Dell

var jsonData = [{'id':'192508'},{'id':'1225'},{'id':'0316'}];

var html = '';

for(var item in jsonData){

//        html += '

';

html += '

'+jsonData[item].id+'

';

}

$("#cont").html(html);

//    console.log(jsonData);

$(document).off().on("click", ".syh", function() {

var index = $(".syh").index(this);

//        var id=$('input[name="order_id[]"]').eq(index).val();

var id=$('li[name="order_id[]"]').eq(index).text();

alert(id);

});

作者:yuzhan550

链接:http://www.jianshu.com/p/5f24c5af2f1c

來源:

著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

你可能感兴趣的:(动态获取添加绑定事件)