form表单提交之前判断
来源:程序员人生 发布时间:2014-09-17 08:46:53 阅读次数:2007次
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;
}
});
生活不易,码农辛苦
如果您觉得本网站对您的学习有所帮助,可以手机扫描二维码进行捐赠