如何阻止IE和各大浏览器默认行为()
A: window.event.cancelBubble=true;
B: window.event.returnValue=false;
C: window.stopPropagation();
D: event.preventDefault();
A: window.event.cancelBubble=true;
B: window.event.returnValue=false;
C: window.stopPropagation();
D: event.preventDefault();
举一反三
- 以下关于阻止事件默认行为的描述中,错误的是: A: 事件的默认行为是指浏览器在事件传递合处理完成后自动执行的与该事件关联的默认动作。例如,单击一个超链接的默认行为是访问其定义的url。 B: 在IE和其他浏览器中阻止事件默认行为的方法不同。在IE下,可以通过设置event对象的returnValue属性为false阻止事件的默认行为;在其他浏览器中,则可以通过调用event对象的preventDefault()方法实现。 C: 可以通过event对象的preventDefault属性判断浏览器是否支持preventDefault()方法。如果preventDefault属性,则浏览器支持preventDefault()方法;否则不支持。 D: 很多浏览器不支持阻止事件默认行为事件。但在IE等支持onunload 事件的浏览器中应注意,刷新页面时则会触发阻止事件默认行为事件;只有关闭单个页面时才会触发onunload 事件,而关闭浏览器应用程序时不会触发onunload 事件。
- 以下哪些是event事件对象的属性和方法?() A: preventDefault() B: stopPropagation() C: target D: type
- ()用于监听动作事件的接口。 A: Action Listene B: Event C: Window Listene D: MouseListene
- 使用event. stopPropagation()方法阻止事件冒泡,其中event指的是_______。
- 在JavaScript语言中,拥有onsubmit时间的对象是(). A: form B: event C: document D: window