if (event.stopPropagation) {
// this code is for Mozilla and Opera
event.stopPropagation();
}
else if (window.event) {
// this code is for IE
window.event.cancelBubble = true;
}
阻止事件冒泡
最新推荐文章于 2025-03-24 01:20:06 发布