我在网站上的“留言板”页面源代码中看到了这段代码:
<script type="text/javascript">
$(document).ready(function(){
$(".view_comments").click(function() {
var ID = $(this).attr("id");
$.ajax({
type : "POST",
url : "guestmsg/viewajax.php",
data : "msg_id=" + ID,
cache : false,
success : function(html) {
$("#view_comments" + ID).prepend(html);
$("#view" + ID).remove();
$("#two_comments" + ID).remove();
}
});
return false;
});
});
</script>
我使用Firefox没有脚本扩展名,我无法打开“查看其他消息”。
答案 0 :(得分:0)
此代码检查新评论。如果您希望能够看到消息,则必须暂时关闭扩展程序