AI智能
改变未来

Layui 新增的元素事件不生效

// 绑定onchange事件 ---新增的元素事件不生效//$(\".fixedInput\").bind(\"input propertychange change\",function(event){//  var _divs = $(\".fixedInput\").parent().parent().find(\"select\");//  var select = _divs.eq(0).find(\"option:selected\");//  select.val(\"fixedValue\" + $(this).val());//  form.render();//});// 使用此方式-新增的元素事件生效$(document).on(\"change\",\".fixedInput\",function(){console.log(234324);var _divs = $(\".fixedInput\").parent().parent().find(\"select\");var select = _divs.eq(0).find(\"option:selected\");select.val(\"fixedValue\" + $(this).val());form.render();})
赞(0) 打赏
未经允许不得转载:爱站程序员基地 » Layui 新增的元素事件不生效