0条评论
还没有人评论过~
比如下面的 html img 标签代码:
<img onload="<span>alert</span>('hello')" src="https://www.cnblogs.com/images/logo_small.gif"/>
在不修改 img 标签部分代码的情况下,如何实现在页面加载时通过 js 代码禁用 onload
中 <span>alert</span>('hello')
事件处理函数?
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<img id='demo' onload="alert('hello')" src="123.png" >
<script type="text/javascript">
var img = document.getElementById("demo");
img.onload="none";
</script>
</body>
</html>