当我使用 ajax 打开链接时,我想更改 wibyia 工具栏以将 facebook like 按钮刷新到当前网页,所以我每次都重新加载 wibyia 脚本,但它只加载一次......帮助
$(document).ready(function(){
$("[href^='?id=']").click(function(){
var linkid=$(this).attr("href");
$(".col-1").html("<div style='text-align:center;margin-top:10px'><img src='images/loading.gif' /> </div>");
window.history.pushState("object or string", "index", "http://localhost:10358/"+linkid);
$.ajaxSetup ({
// Disable caching of AJAX responses
cache: false
});
$.get("/catdata/news.php"+linkid,function(result){
$(".col-1").html(result);
});
$.getScript("http://cdn.wibiya.com/Toolbars/dir_1185/Toolbar_1185788/Loader_1185788.js");
return false;
});
});