問題頁面:
mt's Upload您好,這個網站出現的問題是屬於瀏覽器方面的問題,
以IE 6, 7, 8, Google Chrome 測試皆正常
語法:
代碼:
...
<script>
function addfile()
{
fdiv=document.getElementById('file');
finput=document.createElement('input');
finput.type='file';
finput.name='files[]';
fdiv.appendChild(finput);
nspan=document.createElement('span');
nspan.innerText=' Note: ';
fdiv.appendChild(nspan);
ninput=document.createElement('input');
ninput.name='note[]';
fdiv.appendChild(ninput);
nbr=document.createElement('br');
fdiv.appendChild(nbr);
}
</script>
</head>
...
其中問題在這段:
代碼:
nspan=document.createElement('span');
nspan.innerText=' Note: ';
fdiv.appendChild(nspan);
按下Add a file.後,中間的" Note: "無法顯示