摘要:
jQuery 提供了两种方式来阻止事件冒泡。 方式一: event.stopPropagation(); $("#div1").mousedown(function(event) { event.stopPropagation(); }); 方式二:return false; $("#div1"). 阅读全文
摘要:
定义和用法 confirm() 方法用于显示一个带有指定消息和 OK 及取消按钮的对话框。 语法 confirm(message) 参数描述 message 要在 window 上弹出的对话框中显示的纯文本(而非 HTML 文本) 说明 如果用户点击确定按钮,则 confirm() 返回 true。 阅读全文