我想点击帖子评论按钮添加一个Jquery弹出窗口

时间:2013-10-04 17:10:45

标签: jquery wordpress popup comments

我想在点击帖子评论按钮时添加一个Jquery弹出窗口,只有在单击表单上的提交按钮时才会保存该表单的数据。这就是我到现在为止所做的工作

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

但我无法在帖子事件

上分配j查询弹出窗口

1 个答案:

答案 0 :(得分: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>