如何使用 .live() 方法制作事件“情节选择”(我不能使用绑定,因为情节是动态的)。
jQuery(document).ready(function() {
jQuery("#placeholder").live("plotclick", function(event, ranges){
alert("plot click works!");
});
jQuery("#placeholder").live("plotselected", function(event, ranges){
alert("plot selected work!");
});
});
选择的情节不起作用。