我需要更新有关我网站的一节,经常使用Ajax、jquery和php。
当第1页的负荷时,该页的文字功能显示该节的内容。 然后用json I检查最新情况,如果结果有,则要求发挥同样的功能。
如今,在麻省部分内有类似链接。
<a href="news.php?id" class="ajaxpopup">title</a>
to call fancybox but instead of opening a popup, it opens the page directly. If the link to call fancybox is not inside an ajax content it displays properly. I know that there are some people with the same problem but the answers are for divs with specific id. How can I set it globally. I mean to work on links with class="ajaxpopup"?
这是我所称的内容的职能。
$(document).ready(function() {
$(".ajaxpopup").fancybox({
overlayColor : #000000 ,
centerOnScroll : true,
transitionIn : none ,
transitionOut : none ,
modal : true
});
});
function update(page,value) {
var data = id= +value;
$.ajax({
url: page,
type: "POST",
data: data,
cache: false,
success: function (html) {
$( #updates ).html(html);
$( #updates ).fadeIn(200);
}
});
}
之后是零件