Jquery对input file控件的onchange事件

来源:互联网 发布:mac邮箱无法验证账户 编辑:程序博客网 时间:2024/05/29 20:01
<!doctype html><html><head><meta charset="utf-8"><title>无标题文档</title><script type="text/javascript" src="jquery.js"></script><script type="text/javascript">$(document).ready(function(e) {    $("#file").change(function(e) {        alert("change事件触发");    });});</script></head><body><input type="file" id="file" /></body></html>
阅读全文
0 0
原创粉丝点击