-1

对不起我的英语不好。
我有这个代码:

x = 0
y=prompt("Whats your name?");
if (x == "andrea")
{
x=x+1
}
.....
document.write("You made "+ x +" points.");

我怎样才能使提示的答案大写?
谢谢。

不是document.write,而是答案,例如“andrea”。我希望当用户写答案时,例如“andrea”它是大写的。

我希望用户被迫将答案写成大写。

4

4 回答 4

2

toUpperCase 和 toLowerCase() 示例

var x=0;
var y=prompt("Come ti chiami?");
if(y.toLowerCase()=="andrea"){
 x++;
}

document.write(y.toUpperCase()+", hai fatto "+ x +" punti");

追加替代

var answer=y.toUpperCase‌​()+", hai fatto "+ x +" punti"
document.body.appendChild(document.createElement('div')).innerText=answer;
于 2013-06-19T14:32:45.550 回答
1

你的意思

y=prompt("Whats your name?");
if (y == "andrea")

代替

y=prompt("Whats your name?");
if (x == "andrea")
于 2013-06-19T14:28:08.877 回答
0
document.write(("Hai fatto "+ x +" punti").toUpperCase());
于 2013-06-19T14:28:21.367 回答
0

只是:

var lowerText="Hai fatto "+ x +" punti";
document.write(lowerText.toUpperCase());
于 2013-06-19T14:28:22.157 回答