对不起我的英语不好。
我有这个代码:
x = 0
y=prompt("Whats your name?");
if (x == "andrea")
{
x=x+1
}
.....
document.write("You made "+ x +" points.");
我怎样才能使提示的答案大写?
谢谢。
不是document.write,而是答案,例如“andrea”。我希望当用户写答案时,例如“andrea”它是大写的。
我希望用户被迫将答案写成大写。
对不起我的英语不好。
我有这个代码:
x = 0
y=prompt("Whats your name?");
if (x == "andrea")
{
x=x+1
}
.....
document.write("You made "+ x +" points.");
我怎样才能使提示的答案大写?
谢谢。
不是document.write,而是答案,例如“andrea”。我希望当用户写答案时,例如“andrea”它是大写的。
我希望用户被迫将答案写成大写。
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;
你的意思
y=prompt("Whats your name?");
if (y == "andrea")
代替
y=prompt("Whats your name?");
if (x == "andrea")
document.write(("Hai fatto "+ x +" punti").toUpperCase());
只是:
var lowerText="Hai fatto "+ x +" punti";
document.write(lowerText.toUpperCase());