码迷,mamicode.com
首页 > 其他好文 > 详细

关于DOM相关的几个tips

时间:2016-02-11 22:39:33      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:

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

标签:

原文地址:http://www.cnblogs.com/coolhector/p/5186678.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!