搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
JavaScript
jQuery 教程
jQuery 参考手册
源代码
清空
点击运行
<!DOCTYPE html> <html> <title>jQuery :file选择器示例 - 基础教程(div.cn)</title> <head> <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script> <script> $(document).ready(function(){ $(":file").css("background", "lime"); }); </script> </head> <body> <form action=""> <input type="file" name="myPic" accept="image/*"> <input type="submit"> </form> </body> </html>
运行结果