if(score>=90 && score<=100)
{
document.write("你很棒!");
}
else if(score>=75)
{
document.write("不錯吆!");
}
else if(score>=60)
{
document.write("要加油!");
}
else if(score>=0&&score<60)
{
document.write("你是蠢材嗎?");
}
else
{
document.write("你他媽搞事情是不?");
}
{
document.write("你很棒!");
}
else if(score>=75)
{
document.write("不錯吆!");
}
else if(score>=60)
{
document.write("要加油!");
}
else if(score>=0&&score<60)
{
document.write("你是蠢材嗎?");
}
else
{
document.write("你他媽搞事情是不?");
}
2022-01-30
<input type="button" value="改變顏色" onclick="chang(0)" >
<input type="button" value="改變寬高" onclick="chang(1)">
<input type="button" value="隱藏內容" onclick="chang(2)">
<input type="button" value="顯示內容" onclick="chang(3)">
<input type="button" value="取消設置" onclick="chang(4)">
<input type="button" value="改變寬高" onclick="chang(1)">
<input type="button" value="隱藏內容" onclick="chang(2)">
<input type="button" value="顯示內容" onclick="chang(3)">
<input type="button" value="取消設置" onclick="chang(4)">
function openWindow(){
var isopen=confirm('是否打開網站');
if(isopen==true){
var url=prompt("輸入網址","http://www.xianlaiwan.cn")
if(url!=null){
window.open(url,'_bank','width=400,height=500,menubar=no,toolbar=no')
}
}
}
var isopen=confirm('是否打開網站');
if(isopen==true){
var url=prompt("輸入網址","http://www.xianlaiwan.cn")
if(url!=null){
window.open(url,'_bank','width=400,height=500,menubar=no,toolbar=no')
}
}
}
document.getElementById("con")
//:獲取到是這個p元素。
//而你想要的是P元素的文本。所以
document.getElementById("con").innerHTML;
//獲取里面的內容
?
//:獲取到是這個p元素。
//而你想要的是P元素的文本。所以
document.getElementById("con").innerHTML;
//獲取里面的內容
?
2021-08-01
function openWindow()
{var mytext=prompt("請輸入網址:","http://www.xianlaiwan.cn/");
if(mytext!=null) {window.open(mytext,'_blank','height=500,width=400,menubar=no,toolbar=no');}
else
{alert("Thanks");}
}
{var mytext=prompt("請輸入網址:","http://www.xianlaiwan.cn/");
if(mytext!=null) {window.open(mytext,'_blank','height=500,width=400,menubar=no,toolbar=no');}
else
{alert("Thanks");}
}