已采納回答 / 素素賈賈
"+"代表的意思是連接兩個字符串的意思,你要是想讓它輸出像3+2這樣的 你需要把它放進字符串中進行輸出。例如:document.write("3+2=?");
2016-03-11
已采納回答 / ruiyang_0529
你在if外先定義的 con 和 prom變量:?? ? ? var con = confirm("確定打開新窗口嗎?");? ? ? ? var prom = prompt('確定打開網址:','http://www.xianlaiwan.cn'); 所以在執行的時候 順序執行,先彈出確認對話框con被賦值,對話框關閉,再彈出輸入對話框prom被賦值,對話框關閉。然后con prom得到值以后再進行你的if判斷。你應該把prom的賦值 放在 if(con)的判斷里 才對。
2016-03-11
已采納回答 / 慕圣2639889
<!DOCTYPE?html><html>?<head>??<title>?new?document?</title>????<meta?http-equiv="Content-Type"?content="text/html;?charset=gbk"/>?????<script?type="text/javascript">????function?openWindow()????{?var?queren=confir...
2016-03-10
最新回答 / 丶大和小
function chongzhi(){? ? var chongzhi=confirm("是否重置");? ? if(chongzhi==true){? ? obj.style.height="400px";? ? obj.style.width="600px";? ? obj.style.border="#333 solid 1px";? ? obj.style.padding="5px";? ? obj.style.background="white";? ??obj.style.color="bl...
2016-03-10
已采納回答 / weibo_玥玥說她不叫玥玥_0
var url = prompt("通過對話框,確認打開的網址","http://www.xianlaiwan.cn");這句中的逗號你用了中文格式,改成英文的就可以了
2016-03-10
最新回答 / 我樂意
? function cancel(){? ? ? var mychar=document.getElementById("txt");? ? ? var message=confirm("確定取消所有設置?");? ? ? if(message==true){? ? ? ? ? mychar.removeAttribute("style");? ? ? }? ? ? else{? ? ? ? ? alert("保留設置");? ? ? }? }
2016-03-10
最贊回答 / qq_空_72
設置width,height要加單位PX;為"500px"或者"500"+"px"然后你的set5的‘}’沒有加removeAttribute("style");前面要加對象使之為 div.removeAttribute("style");這樣才能知道重置的而是誰的style
2016-03-10