欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

jquery file是什么意思

程序员文章站 2022-03-09 13:10:40
...

file的意思为“文件”,是jquery中的一个选择器,可以选取带有【type=file】属性的input元素,语法为【$(":file")】。

jquery file是什么意思

相关推荐:《jQuery视频教程

定义和用法

:file 选择器选取带有 type=file 的 input 元素。

语法

$(":file")

实例

选取带有 type="file" 的 <input> 元素:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(document).ready(function(){
  $(":file").css("background-color","red");
});
</script>
</head>
<body>

<form action="">
用户名: <input type="text" name="user"><br>
文件: <input type="file" name="myfile">
</form>

</body>
</html>

更多编程相关知识,请访问:编程学习!!

以上就是jquery file是什么意思的详细内容,更多请关注其它相关文章!

相关标签: jquery file