javascript延时加载之defer测试
更新时间:2012年12月28日 10:12:50 作者:
偶尔发现 js 中有个延时加载的标签 defer,还在疑惑这么好用的东西为什么没有流行起来,本人今天把它拾起来用了一下,发现只在ie7,8,9和360安全济览器下可以,知道为什么不用它了吧
偶尔发现 js 中有个延时加载的标签 defer,还在疑惑这么好用的东西为什么没有流行起来。
测试了几个浏览器。在ie7,8,9和360安全济览器下可以。这就是为什么不选择defer的原因了。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script type="text/javascript" defer="defer">
alert(document.getElementById("myinput").value) ;
</script>
</head>
<input type="hidden" name="myinput" id="myinput" value="test"/>
<body>
</body>
</html>
测试了几个浏览器。在ie7,8,9和360安全济览器下可以。这就是为什么不选择defer的原因了。
复制代码 代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script type="text/javascript" defer="defer">
alert(document.getElementById("myinput").value) ;
</script>
</head>
<input type="hidden" name="myinput" id="myinput" value="test"/>
<body>
</body>
</html>
相关文章
详解extract-text-webpack-plugin 的使用及安装
这篇文章主要介绍了详解extract-text-webpack-plugin 的使用及安装,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧2018-06-06js获得指定控件输入光标的坐标兼容IE,Chrome,火狐等多种主流浏览器
js获得指定控件光标的坐标,兼容IE,Chrome,火狐等多种主流浏览器,实现代码及调用代码如下,感兴趣的朋友可以参考下哈,希望对你有所帮助2013-05-05
最新评论