我不知道如何警告我輸入的一串文本。我嘗試了一些東西,但我覺得我只是猜測。這是我的代碼沒有添加案例「列表」。基本上我想發生什麼事是能夠輸入「名單雞蛋臘肉香腸」,併爲它太輸出(在單獨的線):如何提醒輸入的文本字符串到單獨的行?
雞蛋 臘肉香腸
我不要求任何人這樣做,但要幫助我嘗試瞭解如何去做。
我很抱歉沒有詳細解釋我沒有太多時間來完成,所以任何反饋將不勝感激。
<html>
<head>
<body>
<script type="text/javascript">
//begin function
function Process() {
//declare the variables
var str = ("print" , "datetime" , "list" , "math");
str = prompt("Input Text")
var list = str.split(" ");
//begin switch
switch (list[0]) {
//begin case
case "print":
alert(str.substring(6))
//end case
break;
//begin case
case "datetime":
alert(Datetime())
//end case
break;
default:
alert("you type, "+str)
}
//end switch
}
//end function
//begin function
function Datetime() {
var currentdate = new Date();
var datetime = "Date and Time today: " +
currentdate.getDate() + "/" +
(currentdate.getMonth() + 1) + "/" +
currentdate.getFullYear() + " @ " +
currentdate.getHours() + ":" +
currentdate.getMinutes() + ":" +
currentdate.getSeconds();
return(datetime)
}
//end function
</script>
<script type="text/javascript">
// do the process
Process();
Datetime()
</script>
</body>
</head>
</html>
對字符串中的換行符使用'\ n'。 'alert('word1 \ nword2');' – plalx