aui / artDialog

经典的网页对话框组件

Home Page:http://aui.github.com/artDialog/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

内容中存在data-id属性会出现点击就关闭是BUG不?

sjbwylbs opened this issue · comments

commented

问题代码:
$popup.on('click', '[data-id]', function (event) {
var $this = $(this);
if (!$this.attr('disabled')) {// IE BUG
that._trigger($this.data('id'));
}
event.preventDefault();
});

下载了最新的版本data-id的冲突依旧存在,建议将data-id中的id改成其他的。这样就不会引起冲突了