課程
/前端開發(fā)
/JavaScript
/JavaScript進(jìn)階篇
為啥,值取出來,case語句沒打印出來
2016-09-01
源自:JavaScript進(jìn)階篇 4-4
正在回答
var a = document.getElementById("con").value;取出來的a應(yīng)該是字符串,case后面的數(shù)字都加上單引號(hào)就可以了,否則將一直輸出default后面的語句。希望對(duì)你有所幫助~
離歌笑_0002 提問者
哦。。
你的代碼有錯(cuò)誤。
你獲取了input輸入框的ID值,在判斷它之前,要將這個(gè) a 轉(zhuǎn)換成你 判斷條件中對(duì)應(yīng)的整數(shù)值
即:var myweek = parseInt(a);
流浪的蟈蟈 回復(fù) 離歌笑_0002 提問者
離歌笑_0002 提問者 回復(fù) 流浪的蟈蟈
<!DOCTYPE HTML><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>switch</title><script type="text/JavaScript">function show(){var a = document.getElementById("con").value;var myweek = a;//myweek表示星期幾變量document.write(myweek);switch(myweek){?case "1":?case "2":?document.write("學(xué)習(xí)理念知識(shí)");?break;?case "3":?case "4":?document.write("到企業(yè)實(shí)踐");?break;?case "5":?document.write("總結(jié)經(jīng)驗(yàn)");?break;?default:?document.write("周六、日休息和娛樂");}}</script></head><body><div><input type="text" id="con" placeholder="請(qǐng)輸入數(shù)字"/><button onclick="show()">確認(rèn)</button></div></body></html>
舉報(bào)
本課程從如何插入JS代碼開始,帶您進(jìn)入網(wǎng)頁動(dòng)態(tài)交互世界
1 回答為啥打印出來的不是和
2 回答為啥title沒打印出來,直接復(fù)制的答案
5 回答問題出在哪? 為什么那句話打印不出來?在注釋
2 回答為什么啥也沒輸出出來
3 回答怎么才能打印出來啊
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號(hào)-11 京公網(wǎng)安備11010802030151號(hào)
購課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號(hào)
2016-09-01
var a = document.getElementById("con").value;取出來的a應(yīng)該是字符串,case后面的數(shù)字都加上單引號(hào)就可以了,否則將一直輸出default后面的語句。希望對(duì)你有所幫助~
2016-09-02
哦。。
2016-09-01
你的代碼有錯(cuò)誤。
你獲取了input輸入框的ID值,在判斷它之前,要將這個(gè) a 轉(zhuǎn)換成你 判斷條件中對(duì)應(yīng)的整數(shù)值
即:var myweek = parseInt(a);
2016-09-01
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>switch</title>
<script type="text/JavaScript">function show(){var a = document.getElementById("con").value;
var myweek = a;//myweek表示星期幾變量
document.write(myweek);
switch(myweek)
{
?case "1":
?case "2":
?document.write("學(xué)習(xí)理念知識(shí)");
?break;
?case "3":
?case "4":
?document.write("到企業(yè)實(shí)踐");
?break;
?case "5":
?document.write("總結(jié)經(jīng)驗(yàn)");
?break;
?default:
?document.write("周六、日休息和娛樂");
}}
</script>
</head>
<body><div>
<input type="text" id="con" placeholder="請(qǐng)輸入數(shù)字"/>
<button onclick="show()">確認(rèn)</button></div>
</body>
</html>