我有一个简单的文件来测试我直接从 w3schools 的示例中复制的 onclick 功能。它在 Tryit 编辑器中运行良好,但是当我将具有 onclick 功能的按钮放在我的服务器上时,它什么也不做。
<!DOCTYPE html>
<html>
<head>
<script>
function open_win()
{
window.open("http://www.<valid address>");
}
</script>
</head>
<body>
<form>
<input type="button" value="Open Window" onclick="open_win()">
</form>
</body>
</html>
我应该先看哪里?