我把表单的file文件域标志为readonly,结果在IE6中浏览按钮就点不动了,怎么办?
<html>
<head>
<title>无标题文档</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<form name="form1" enctype="multipart/form-data" method="post" action="">
<input type="file" name="file" readonly>
</form>
</body>
</html>
代码如上,我是想在上传时为了避免直接输入,而让用户必须点浏览文件按钮上传文件;现在浏览按钮就点不动了,而IE5则没这个问题,怎么解决