且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

使用Wordpress动态加载帖子

更新时间:2023-11-30 15:08:52

知道了:

$("#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
});