document.getElementById("list").innerHTML = str;
mui('.mui-switch').each(function() {
var _this = this;
_this.addEventListener("toggle", function(event) {
console.log("ok");
var id = _this.getAttribute("title");
if (event.detail.isActive) {
openOrClose(0, id, _this);
} else {
openOrClose(1, id, _this);
}
});
});
拼接的字符串列表添加进div , 对列表中的开关按钮无法添加监听事件!
3 个回复
DCloud_UNI_FXY
太阳光
建议用事件委托完成。
ygs88 (作者)
上面的回复正确的解决了问题!