-2
我寫了這段代碼但沒有工作,我無法看到這個coad上有任何錯誤,誰能幫我解決這個問題。
如何通過ID檢查單選按鈕
<html>
<body>
<input type="radio" name="radio" id="radio1">Site 1<br>
<input type="radio" name="radio" id="radio2">Site 2<br>
<input type="submit" onclick="check()" value="Go">
<script>
function check(){
if(document.getElementById('radio1').checked){
window.location="https://www.site1.com";
}
else if(document.getElementById('radio2').checked){
window.location="https://www.site2.com";
}
</script>
</body>
</html>
您需要定義「不工作」的含義。 – 2015-02-05 13:43:48
你還沒有關閉你的功能 – Pogrindis 2015-02-05 13:48:20
提示:打開你的瀏覽器控制檯,這將顯示錯誤。 – NewToJS 2015-02-05 13:49:49