关于DOM相关的几个tips
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于DOM相关的几个tips相关的知识,希望对你有一定的参考价值。
1.通过监听beforeunload事件可以用来询问用户是否确定离开当前页面。
2.通过将cookie的max-age值设置为0,可以删除该cookie值。
3.通过audio元素的canPlayType方法可以测试浏览器对音频资源的兼容性
4.如何获取label元素for属性的值,除getAttribute方法以外,我们可以通过属性访问表达式获取,但是for为JS关键字,所以DOM中使用的是htmlFor来替代for。
5.DOM2级事件规定事件包括三个阶段:① 事件捕获阶段 ② 处于目标阶段 ③ 事件冒泡阶段
6.This attribute specifies the content type used to submit the form to the server (when the value of method is "post"). The default value for this attribute is "application/x-www-form-urlencoded". The value "multipart/form-data" should be used in combination with the INPUT element, type="file".
7.cookie的必填属性为name和value。name, domain, path 三者标识一个唯一的cookie。
引用自: https://www.w3.org/TR/1999/REC-html401-19991224/interact/forms.html#adef-enctype
以上是关于关于DOM相关的几个tips的主要内容,如果未能解决你的问题,请参考以下文章