js - script标签的for属性和event属性
<script language="javascript" for="window" event="onload">
alert("hello word!");
</script>
// for 属性指定脚本执行对象(给谁用的)
// event 属性指定脚本执行事件(在什么时候执行)
// 上面的代码相当于:
$(document).ready(function(){alert("hello word!");}
注:只有IE支持这种语法
标签:script,标签,alert,js,event,属性 From: https://www.cnblogs.com/zc-lee/p/16666213.html