jQuery :file 选择器 概述
jQuery 2022-06-01 12:04:12小码哥的IT人生shichen
jQuery :file 选择器
实例
选择 type="file" 的 <input> 元素:
$(":file")
完整实例:
<html>
<head>
<script type="text/javascript" src="https://apps.bdimg.com/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(":file").css("background-color","#B2E0FF");
});
</script>
</head>
<body>
<html>
<body>
<form action="">
Name: <input type="text" name="user" />
<br />
Password: <input type="password" name="password" />
<br />
File: <input type="file">
</form>
</body>
</html>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
定义和用法
:image 选择器选取类型为 file 的 <input> 元素。
语法
$(":file")