regist.php中的一行
<dd class="face"><img src="images/1.jpg" alt="頭像選擇" id="faceimg"/></dd>
JS文件中的代碼
window.onload=function(){
var faceimg=document.getElementByld('faceimg');
faceimg.onclick=function(){
window.open('face.php','face','width=400,height=400,top=0,left=0,scrollbars=1');
}
};
函數都錯了,是byId,不是byld
var faceimg = document.getElementById('faceimg');