我的index.html页面存在问题 -
<html>
<body>
<h2>My First JavaScript</h2>
<button type="button"
onclick="window.alert('hello')">
Click me to display Date and Time.</button>
<p id="demo"></p>
</body>
</html>
当我将其部署到IIS并使用http://localhost:80/index.html打开它时 - 按钮单击有效。但是,如果我编辑站点绑定以包含服务器名称(XYX),然后使用我的服务器名称http://xyz:80/index.html加载它 - 页面加载正常但javascript按钮单击事件不起作用。我错过了什么?