标签:top div rop 事件 点击 jquery hide 方法 document
$("#btnAdd").on(‘click‘, function (e) {
$("#setUp").toggle();
$(document).one(‘click‘, function () {
$(‘#setUp‘).hide();
})
e.stopPropagation();/*stopPropagation();方法可以阻止把事件分派到其他节点*/
});
标签:top div rop 事件 点击 jquery hide 方法 document
原文地址:https://www.cnblogs.com/otsf/p/10796874.html