我想知道是否可以避免<script>
在我的 HTML 中插入标签,而是使用事件:
<div id="foo">
<script>
document.getElementById('foo').className = 'has-js';
// ^^ can I put this in some on* attribute of #foo,
// and make it run at this point ?
</script>
...
<div ...
是否有一些on*
我可以在 div 上使用的属性,我可以在#foo
其中插入我的 javascript?