我這里有什么地方不對(duì)嗎?
<!DOMTYPE?html> <html> <head> ????<meta?http-equiv="Content-Type"?content="text/html;?charset=utf-8"?/> ????<title>js編程練習(xí)</title> ?????????????<!--css?begin--> <style?type="text/css"> ????*{margin:?0?;?padding:?0;?font-family:?"宋體"} ????????????#main{?border:?2px?solid?red;?height:?100%;} ????????????#showmore{ ????????position:?absolute; ????????top:?5%; ????????left:?25%; ????????border-top:?1px?solid?blue; ????????border-right:?1px?solid?blue; ????????border-left:?1px?solid?blue; ????????background:?white; ????????width:?400px; ????????????} </style> ???<!--css?end--> ????<!--這是內(nèi)部JS代碼--> <script?type="text/javascript"> ????//光標(biāo)失焦 ????function?showOnblur()?{ ????????var?sob?=?document.getElementById("showmore");//通過(guò)id獲取 ????????sob.style.display?=?"none";//隱藏內(nèi)容 ????????????} ???????????? ????????????//光標(biāo)聚集 ????????????function?moreOnfocus()?{ ????????var?mof?=?document.getElementById("showmore"); ????????mof.style.display?=?"block";??//顯示內(nèi)容 ????????????} </script> ????<!--內(nèi)部js?end--> </head> <body> ????<div?id="main"> ????<p?id="mainp"?>簡(jiǎn)介:做為WEB攻城師必備技術(shù)JavaScript, 本課程從如何插入JS代碼開(kāi)始,學(xué)<span?id="more1"?onfocus="moreOnfocus()"?>[更多]<span></p> ????<div?id="showmore"?onblur="showOnblur()"?>簡(jiǎn)介:做為W EB攻城師必備技術(shù)JavaScript,本課程從如何插入JS代碼開(kāi)始, 學(xué)習(xí)JS基礎(chǔ)語(yǔ)法、語(yǔ)法、函數(shù)、方法等,讓你掌握J(rèn)S編程思路、 知識(shí)的使用等,實(shí)現(xiàn)運(yùn)用JS語(yǔ)言為網(wǎng)頁(yè)增加動(dòng)態(tài)效果,達(dá)到與 用戶交互的目的。</div> </div> </body> </html>
為什么#showmore的內(nèi)容沒(méi)有隱藏。。。
2016-10-27
onfocus onblur事件只對(duì)于文本框有效
?
2016-10-27