1、清空form表单的输入值
用$("#form1").reset();无法清除,必须
document.getElementById("form1").reset();
2、清除div下的内容
$('#PackIconUrlSpan1').empty();
3、alert弹出层秒关闭的问题
出现的原因:使用这种方法来弹出alert层
<button class="btn btn-info" >确定添加</button>
解决办法:不要用<button />标签,使用<input />
<input type="button" value="确定添加" class="btn btn-info"/>