日期:2014-05-16 浏览次数:20516 次
<style type="text/css">
.file {
width: 0px;
border: #FFFFFF;
}
</style><input type="text" name="fileName" readonly="">
<script language="javascript">
function getFileName(){
newsForm.fileName.value=newsForm.file.value
}
</script><html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GBK">
<title>新闻图片上传页面</title>
<style type="text/css">
.file {
width: 0px;
border: #FFFFFF;
}
</style>
<script language="javascript">
function getFileName(){
newsForm.fileName.value=newsForm.file.value
}
</script>
</head>
<body>
<form name="newsForm" method="post" action="#">
<input type="text" name="fileName" readonly="">
<input name="file" type="file" class="file" onChange="return getFileName()">
</form>
</body>
</html>