こんにちは、これは私のコードです。コードは機能しています。フォームを送信してから、投稿リンクが送信されない場合は、助けてください。
$(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);
});
});
});
});
ありがとうございました