非常奇怪的问题。使用IE11一个非常基本的JavaScript警报()不会弹出一个窗口。我已重置我的设置并禁用了弹出窗口阻止程序,但仍然获得相同的行为。这是代码,我在下面的页面上测试过: http://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_alert
<!DOCTYPE html>
<html>
<body>
<p>Click the button to display an alert box.</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
alert("Hello! I am an alert box!");
}
</script>
</body>
</html>
答案 0 :(得分:-1)
按钮设置的问题。
这两个按钮将毫无问题地调用2个javascripts
<button type="submit" onclick="myFunction()" runat="server">Try it</button>
<asp:Button ID="btnCall" runat="server" style="margin-top: 1px" Text="Exit App." OnClientClick="play()" />