<input type="button" value="保存" onclick="return display_excel();" />
在这个代码里,函数display_error里使用
$(#form).submit();
会失效,也不报错。
原因是因为,input标签少了name属性,加上就可以了。
<input type="button" value="保存" onclick="return display_excel();" />在这个代码里,函数display_error里使用$(#form).submit();会失效,也不报错。原因是因为,input标签少了name属性,加上就可以了。
<input type="button" value="保存" onclick="return display_excel();" />
在这个代码里,函数display_error里使用
$(#form).submit();
原因是因为,input标签少了name属性,加上就可以了。
评论
0成为第一个留下想法的人。