使用IE11一个非常基本的JavaScript警报()不会弹出一个窗口。只有哔哔声

时间:2015-10-09 14:52:26

标签: javascript popup alert internet-explorer-11

非常奇怪的问题。使用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>

1 个答案:

答案 0 :(得分:-1)

按钮设置的问题。

这两个按钮将毫无问题地调用2个javascripts

  1. HTML button-classic asp
  2. <button type="submit" onclick="myFunction()" runat="server">Try it</button>

    1. 网络控制按钮
    2. <asp:Button ID="btnCall" runat="server" style="margin-top: 1px" Text="Exit App." OnClientClick="play()" />