2012-05-18 58 views
0

我一直在尋找通過的StackOverflow了很多,找到了一些解決方案,但他們不爲我工作:(可能是因爲我不能正確放置的代碼串實時形式 - 在提交清晰文本框

我。有哪些內容提交到數據庫的形式 - 和裝載數據庫投入下面的表單一個div腳本它可以實時與延遲小

<div id="addCommentContainer"> 

<form id="addCommentForm" method="post" action=""> 
    <div> 

     <input type="hidden" name="name" value="<?php echo $loggedInUser->display_username; ?>" id="name" /> 

     <input type="hidden" name="email" value="<?php echo $loggedInUser->email; ?>" id="email" /> 

     <textarea name="body" id="body" cols="20" rows="5"></textarea> 

     <input type="submit" id="submit" value="Submit" /> 
    </div> 
</form> 

。 0

它的工作原理。我也有這個腳本: http://sandbox.jinoh.dk/script.js

我試過一個解決方案onclick - 但它使內容消失不被張貼。我嘗試了提交 - 但沒有奏效。我想要的是要發佈的「評論」,然後從表單中消失,也就是要清除的表單。

Chatchatchat-div是註釋加載到的那個。

回答

0
$('#addCommentForm').submit(function(e){ 
    var form = this; 
    ..... 
    .... 

    $.post('submit.php',$(this).serialize(),function(msg){ 
    if(msg.status){ 
     form.reset(); // if you want to reset on msg status 
    } 
    ....     
    }); 

    this.reset(); // just reset the form what happen 
}); 
+0

謝謝!我看到它的邏輯:) – Christian