使用jquery的append方法添加了一个div,然后取不到div中的元素,怎么办?谢谢各位大神!

2024-11-13 23:27:23
推荐回答(1个)
回答1:

$(document).ready(function(){
$.each($(".shop-cartbutton"), function(i,val){
 $(this).click(function(){
 $(".ng-isolate-scope").show();
 $("#shopbasket .ng-isolate-scope").append(""+
         ""+$(this).parents("span").siblings().find("h3").text()+"
"+
""+
"-"+
""+
"+"+
"
"+
""+$(this).parents("span").prev().text()+"
"+
"
");
$("#reduce").on("click",function(){
                         alert("122121");
                         });
 });
  });
});

因为这个div是代码生成的,那么事件就在生成的代码跟着写。我测试是可行的

相关问答
最新问答