我需要幫助我的功能。我有我所有的變數。 需要幫助切換頁面
var swith = document.getElementById("sub");
var one = document.getElementById("rule");
var two = document.getElementById("cool");
var three = document.getElementById("fool");
Function cool() {
\t if(swith,one) window.location.replace("app.html");
};
<html>
<head>
<title>question?</title>
<link href="app.css" rel="stylesheet" type="text/css"/>
</head>
<body id="QA"> \t
<select id="much">
<option id="rule">0-10,000</option>
<option id="cool">25,00-50,000</option>
<option id="fool">75,000-100,000</option>
<input type="submit" id="sub">
<script src="app.js"></script>
</select>
</body>
</html>
我想我錯過了一些重要的東西。但谷歌表示「未捕獲的SyntaxError:意外的標識符」。
JavaScript是大小寫敏感的。 '函數'不'函數' – j08691
app.js中有什麼? – santon