在HTML中怎么點(diǎn)擊一個(gè)按鈕能彈出一個(gè)選項(xiàng)框?
【1】其中btnid為按鈕的IDpsd為用戶的密碼(用戶以前的密碼)document.getElementById(btnid).onclick=function(){varpassword=prompt("請(qǐng)輸入您的密碼","********");if(password!=null&&password==psd){alert('輸入成功!');}};【2】<inputtype="button"value="彈出窗口"onclick="javascript:window.open("test.HTML")">