已采納回答 / weixin_慕前端8193251
?<input type="button" value="改變顏色" onclick="changeColor()"/>??? ? <input type="button" value="改變寬高" onclock="changeWidth()"/>? ? <input type="button" value="隱藏內(nèi)容" onclock="hide()"/>? ? <input type="button" value="顯示內(nèi)容" onclock="show()...
2020-03-04
已采納回答 / langkye
做業(yè)務(wù)的時候是靈活運用的,也就是說你的方式二能用;但問題是,慕課后臺處理的方式是要寫兩句才能讓你過而已,跟任務(wù)有關(guān),不用糾結(jié)
2020-03-03
已采納回答 / 牧子謙
<p>是段落標(biāo)簽? 可以這樣設(shè)置document.write("<font color='blue'>開啟JS之旅!</font>");
2020-03-01
已采納回答 / qq_如冰雖不凍_0
//定義"取消設(shè)置"的函數(shù)<...code...>修改下if語句中style兩邊的的符號,是‘style’,不是
'style'
2020-02-27
已采納回答 / 三大法則
共 四 ?處錯誤?? function sethwidthheight(){??????? var b=document.getElementById("txt");??????? e.style.width=100px;??????? e.style.height=100px;?函數(shù)名多了個h,變量名不統(tǒng)一,b改成e就行了,100px需要加引號?var c=confirm("你確定要恢復(fù)所有設(shè)置嗎?");??????? if(c==true){??????????? e.removeAttribute(...
2020-02-25
已采納回答 / 慕用1151135
function cancel(){ var c=confirm.("確定恢復(fù)嗎?");? if(c=true)? {? ? ? a.removeAttribute("style");? ? ? b.removeAttribute("style");? }你最后一段代碼有幾個問題var c=confirm.("確定恢復(fù)嗎?");括號前多了一個點。? if(c=true)這里應(yīng)該為雙等號 ?if(c==true)? a.removeAttribute("style");這里應(yīng)該為單引號‘ style’改了之...
2020-02-22