0

我想在单击发表评论按钮时添加一个 Jquery 弹出窗口,并且仅当单击表单上的提交按钮时才保存该表单的数据。这就是我到现在为止的工作

http://trueblueseo.com/seo/?p=23

但我无法在发布事件上分配 aj 查询弹出窗口

4

1 回答 1

0
<script>
function pop_on_click(){

    use jquery and ajax here to get value of text and post it & later you can store it in database ....
}
</script>

<?php add_thickbox(); ?>
<div id="my-content-id" style="display:none;">
     <p>
          Do you want to post this comment ? 

    <input type="submit" name="confirm_comment" id="confirm_comment" onclick="pop_on_click(); return false;" class="confirm_comment" />

     </p>
</div>
<input type="text" name="text_comment" id="text_comment" class="text_comment" />

<a href="#TB_inline?width=200&height=150&inlineId=my-content-id" class="thickbox">Post Comment</a>  
于 2013-10-04T18:18:03.047 回答