我正在制作一个 wordpress 网站,但我遇到了问题。我添加了一个社交按钮以在多个社交网站上分享帖子。
我还做了一个无限滚动加载下一篇文章。我的问题是当我将 html 回调放入我的页面时,这个 javascript 没有被解释。这个按钮是用javascript制作的。
我的 ajax 调用返回给我一个 wordpress 页面的所有 html(带有 html 标签......)
这是我的 javascript 代码:
$(window).scroll(function(){
if ($(window).scrollTop() == $(document).height() - $(window).height()){
// Are there more posts to load?
if(pageNum <= max) {
$.ajax({
type: "GET",
url:nextLink,
dataType: "html",
success : function(data) {
// Update page number and nextLink.
pageNum++;
nextLink = nextLink.replace(/\/page\/[0-9]?/, '/page/'+ pageNum);
var pageN = pageNum-1;
var div = $(data).find('.my-post-format');
// Add a new placeholder, for when user clicks again.
$('#pbd-alp-load-posts')
.before('<div class="pbd-alp-placeholder-'+ pageNum +'"></div>')
}
});
}
}
});
我的html代码:
<!-- Lockerz Share BEGIN -->
<li id="partager-article"> <a class="a2a_dd" href="http://www.addtoany.com/share_save?linkurl=<?php the_title() ?>&linkname=<?php the_permalink() ?>">share</a>
<script type="text/javascript">
var a2a_config = a2a_config || {};
a2a_config.linkname = "<?php the_title() ?>";
a2a_config.linkurl = "<?php the_permalink() ?>";
a2a_config.locale = "fr";
a2a_config.num_services = 6;
</script>
<script type="text/javascript" src="http://static.addtoany.com/menu/page.js"></script>
<!-- Lockerz Share END --></li>
在我的数据变量中,我有我的标签,但是当我执行 $(data) 时,这个标签就会消失。
谢谢你的帮助。