查ASC碼/javascript中字元與ascii碼的互換
用String.fromCharCode(n)。例如:String.fromCharCode(92)的值為"\".
2.在javascript中如何求字元對應的ascii碼?
用charCodeAt()。例如:"A".charCodeAt()的值為65.
3.怎麼通過javascript改變檔上載的file域中的檔路徑?
file域為唯讀,不可修改,強行的話有安全提示,但可以能過sendkeys方法進行強行賦值.例如:
<script>
function v(){
t.focus();
var WshShell=new ActiveXObject("WScript.Shell")
WshShell.sendKeys("c:\\4.gif")
}
</script>
例子:file控制項本為唯讀,(除人工輸入)
<input onclick="v()" value="給它值c:\\4.gif" type=button>:<input id=t type=file>