右键点击开始——应用和功能——默认应用——Web——选择打开方式。
或者,右键点击开始——应用和功能——默认应用——按文件类型选择默认应用——找到 .html 选择默认应用。
<!DOCTYPE html><html>
<head>
<meta http-equiv="Content-Type" content="text/htmlcharset=utf-8" />
<title>定义html 中input file的样式</title>
<style type="text/css">
body {
font-size: 14px
}
input {
vertical-align: middle
margin: 0
padding: 0
}
.file_style {
position: relative
width: 340px
}
.text_style {
height: 22px
border: 1px solid #cdcdcd
width: 180px
}
.button_style {
background-color: #FFF
border: 1px solid #CDCDCD
height: 24px
width: 70px
}
.file_item {
position: absolute
top: 0
right: 80px
height: 24px
filter: alpha(opacity : 0)
opacity: 0
width: 260px
}
</style>
</head>
<body>
<div class="file_style">
<form action="" method="post" enctype="multipart/form-data">
<input type="text" name="textfield" id="textfield" class="text_style"/><input
type="button" class="button_style" value="浏览..." /><input type="file"
name="fileField" class="file_item" id="fileField" size="28"
onchange="document.getElementById('textfield').value=this.value" />
<input type="submit" name="submit" class="btn" value="上传" />
</form>
</div>
</body>
</html>
1.将这个控件隐藏,html中加style="display:none"。2.然后从新加个按钮。3.给这个按钮绑定点击事件,点击事件去触发选择文件的功能,点击事件触发后执行$("[type=file]").click()。欢迎分享,转载请注明来源:内存溢出
评论列表(0条)