我使用以下代码,其中包含对split
ID列表的调用。
$("#editlisting").live('click', function(event) {
//alert("hello");
editlistingid = $("tbody td.small input:checkbox:checked").map(function(i, el) {
return $(el).attr("id");
}).get();
eid = editlistingid.split(",");
alert(eid[0]);
editlead();
});
但是,我发现它根本没有分裂。