给动态标签动态绑定事件

Posted 莲藕排骨汤

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了给动态标签动态绑定事件相关的知识,希望对你有一定的参考价值。

html

  <p>给商家留言<input id="text_shop_message_{{shipment.order.order_sequence_id}}" name="" type="text" style="width:300px;"></p>

 

js

  

 1         for(var i=0;i<arr.length;i++){
 2             if(arr[i].order.shop_id==0){
 3                 var orderSequenceId=arr[i].order.order_sequence_id;
 4                 $(‘#text_shop_message_‘+orderSequenceId).bind("blur",(function(){
 5                    //this line
 6                     return function(e){
 7                         var param = {
 8                             orderSequenceId : orderSequenceId,
 9                             customerMessage : $(‘#text_shop_message_‘+orderSequenceId).val()
10                         }
11                         CK.Ajax.post("/message/save", param, function(data) {
12 
13                                 });
14                       //this line
15                         e.stopPropagation();
16                     }
17                 })(arr[i].order.order_sequence_id));
18             }
19         }

 

以上是关于给动态标签动态绑定事件的主要内容,如果未能解决你的问题,请参考以下文章

jQuery给动态添加的元素绑定事件的方法

jQuery给动态添加生成的元素绑定事件的方法

jquery 动态添加节点怎么绑定事件

JQuery对于动态生成的标签绑定事件失效

毕业设计---jQuery动态生成的a标签的事件绑定

JQuery给动态添加的元素绑定事件