我有这个脚本加载另一个php页面,其中包含一些验证码和实际的评论表单。
<script type="text/javascript">
// Stops the page from jumping to top when using a href
$('#button_comment').click(function(e) {
e.preventDefault();
});
// Loads dashboard/comment(.php) into the div comment_form_and_captcha
$("#button_comment").click(function(){
$("#comment_form_and_captcha").load("<?php echo Config::get('URL'); ?>dashboard/comment");
});
</script>
使用此href链接触发该脚本:
<!-- The href that fires the script to load the comment.php into div -->
<a id="button_comment" href="#" role="button">comment</a><br>
<!-- dashboard/comment(.php) is loaded into div1 -->
<div id="comment_form_and_captcha"></div>
但有多个&#34;帖子&#34;在用户可以评论的同一页面上,当前配置无效。
我的想法如何做到这一点
我可以加载$("#comment_form_and_captcha").load("<?php echo Config::get('URL'); ?>dashboard/comment");
其他信息,例如帖子ID "dashboard/comment/"+ id
。来自解雇href id
(id_234伪)的额外<a id="button_comment_id_234" href="#" role="button">comment</a>
。因此dashboard/comment
知道正在评论的帖子。
我的问题
comment_form_and_captcha
?