您好朋友这是我的代码代码正在工作表单提交然后在帖子链接未发送后请帮助。
$(function(){
$("#pitch_image_path_browseiser").live("change",function(){
$("#pitch_image_path_form").attr("id","pitch_image_path_formliveset");
$("#pitch_image_path_formliveset")[0].submit(function(event){
event.stopPropagation();
event.preventDefault();
alert("call");
$.post("submit_investorform.php",{'flage':'getallimagesfromselectedid','form':'pitch_image_path_form'},function(result){
$("#pitch_image_path_showalldatafromid").html(result);
});
});
});
});
谢谢