我有这个表格,它附加在一个 div 的点击上
$('#div').click(function(){
$('#div').load('form.php');
});
这是附加的表格
<form id="addpic" name="addpic" method="post" enctype="multipart/form-data" action="docupload.php">
<input type="file" name="mfoni" id="upper1" style="height:10px; width:100px; cursor:hand;" />
<input type="hidden" name="user" value="<?php echo $id; ?>" id="user" />
</form>
现在我想提交表单而不刷新页面或使用下面的代码重定向
$("input#upper1").live('change', function(){
alert("gone");
// works up to this point
$("form#addpic").ajaxForm({
target: '#loading'
}).submit();
})
这可以达到警报('gone')点并且它停止请治愈我