日期:2014-05-16 浏览次数:20760 次
function Init() { $("#pagelist").children("a").each(function (index, element) { $(element).unbind("click"); if (element.href != "") { var link = element.href; $(element).bind("click", function () { $.ajax({ type: "get", cache: false, url: link, dataType: "html", success: function (msg) { $('#form1').html($(msg).filter('#form1').html()) Init(); } }); }); } element.href = "javascript:;"; }); }