我一直在努力使用自定义 UI 创建一个全新的上传控件。我已经完成了 UI 部分,但我无法获得正在获取要上传文件的完整路径名的后台作业。请帮我做真正的上传部分。
** 老实说,我在网上找到了这个代码 **
这是链接 - http://jsfiddle.net/c3kyX/
这是下面的代码
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
#container {
position: relative;
width: 100px;
height: 100px;
border: 1px solid red;
overflow: hidden;
}
#doit, #hid {
position: absolute;
cursor: default;
}
#doit {
top: 0;
left: 0;
border: 1px solid #000;
}
#hid {
opacity: 0.001;
font-size: 300%;
top: -5px;
right: -5px;
}
</style>
<!--[if IE]>
<style type="text/css">
#hid {
display: none;
}
</style>
<![endif]-->
</head>
<body>
<div id="container" title="Choose File">
<div id="doit">
<img src="upload.png" width="100" width="100" />
</div>
<input id="hid" type="file" size=1>
</div>
<script type="text/javascript">
doit.onclick = function(){hid.click();};
</script>
</body>
</html>