方法一:用text代替hidden,设置text隐藏
<input id="id" name="id" style="display: none;" value="0" />
方法二:单独处理hidden类型
jQuery("#saveForm").form("reset"); jQuery("input[type='hidden']").val("");
方法三:使用clear代替reset
jQuery("#saveForm").form("clear");
注意: clear之后表单的radio也被情况,html的checked也不能生效了,要js重新给radio设置选中值;
如果本文对你有所帮助,请打赏——1元就足够感动我:)
联系邮箱:intdb@qq.com
我的GitHub: https://github.com/vipstone
联系邮箱:intdb@qq.com
我的GitHub: https://github.com/vipstone
关注公众号:
作者: 王磊
出处: http://vipstone.cnblogs.com/
本文版权归作者和博客园共有,欢迎转载,请标明出处。