概述
当HTML文档中的<script>
标签内的代码将要执行时触发该事件,如果这个script
标签是用appendChild()
等方法动态添加上去的,则不会触发该事件.
语法
document.onbeforescriptexecute = funcRef;
当beforescriptexecute
事件触发时,funcRef
函数就会被调用. 传入参数event
的target
属性指向触发该事件的那个script
元素.
例子
function starting(e) { logMessage("Starting script with ID: " + e.target.id); } document.addEventListener("beforescriptexecute", starting, true);