Onclick功能在IE 11中不起作用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Onclick功能在IE 11中不起作用相关的知识,希望对你有一定的参考价值。
我正在尝试在我的html中添加一个提交函数,并使用我的函数引用一个js文件。代码在Chrome中成功运行,但在IE11中无法运行。错误消息是“submitFunc(event)is undefined”。任何人都可以帮我解决这个问题吗?我尽我所能。 T.T
function submitFunc(event) {
console.log("Hey what are you looking for? ")
}
<html>
<div>
<input class="btn btn-primary" type="submit" value="submit" onclick="submitFunc(event)">
</div>
</html>
<script type="text/javascript" src="/static/js/main.js"></script>
答案
可能是你的<script>
标签在<html>...</html>
区域之外。尝试在第一个<head>...</head>
标签之后将其移动到<html>
部分。
以上是关于Onclick功能在IE 11中不起作用的主要内容,如果未能解决你的问题,请参考以下文章