码迷,mamicode.com
首页 > 其他好文 > 详细

form表单提交之前判断

时间:2014-08-29 18:17:48      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:form   onsubmit   

1.使用onsubmit方法


<form name="Form" action="t" method="post" onsubmit="return check();">
<input class="btn btn-default" id="excel_file" type="file" name="filename"  accept="xls"/>
<input  id="excel_button" type="submit" value="导入Excel"/>
</form>

 //onsubmit事件无法触发,使用绑定按钮点击事件代替
    function check() {
    	alert("check");
		var excel_file = $("#excel_file").val();
		if (excel_file == "" || excel_file.length == 0) {
			alert("请选择文件路径!");
			return false;
		} else {
            return true;
        }
	}

2.使用按钮事件绑定


$("#excel_button").on('click', function() {
    	var excel_file = $("#excel_file").val();
		if (excel_file == "" || excel_file.length == 0) {
			alert("请选择文件路径!");
			return false;
		} else {
            return true;
        }
    });


form表单提交之前判断

标签:form   onsubmit   

原文地址:http://blog.csdn.net/kingson_wu/article/details/38928827

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!