<input type="file" /> value值不能预约义
input typefile/ value值不能预定义?例如:htmlhead/headbodytabletrtdtest the file/
<input type="file" /> value值不能预定义
?
例如:<html><head></head><body><table><tr><td>test the file </td><td><input type="file" name="test" value="aaa"></td></tr></table></body></html>要在在文本框中显示aaa
?
?
?
type的类型是file 就是说最终提交到服务器上是一个file(文件)类型的对象,一组二进制文件,而不是文本框里的那组路径。路径只是为了上传文件时能够真实的找到该文件,而每台机器的文件位置都是不可预测的。所以file的使用方法就决定了没有必要为value预定义值。