使用Wordpress动态加载帖子

时间:2009-08-31 10:43:19

标签: jquery wordpress load infinite-loop

helpful idea from Andy Gaskell支持我下一个问题的50%:

我想用WordPress动态加载帖子。使用Andy的函数获取它们确实有效,但如何将负载绑定到每个帖子?

我可以将PHP生成的内容(例如,永久链接)插入JS脚本吗?

谢谢。

2 个答案:

答案 0 :(得分:1)

知道了:

$("#triggerDIV a").click(function(id){
    event.preventDefault(); // prevent a element from executing
    var id = this.getAttribute('href'); // get the link
    $("#targetDIV").load(id); // load it
});

答案 1 :(得分:0)