Html
JS
$(function(){ $(".f_ajaxPrint").click(function(){ url=$(this).attr("post"); $.get(url,function(result){ //alert(result); $(".f_ajaxEndPrint strong").after(result); $(".f_ajaxEndPrint").show(); }); }); });
本文共 388 字,大约阅读时间需要 1 分钟。
Html
JS
$(function(){ $(".f_ajaxPrint").click(function(){ url=$(this).attr("post"); $.get(url,function(result){ //alert(result); $(".f_ajaxEndPrint strong").after(result); $(".f_ajaxEndPrint").show(); }); }); });
转载于:https://my.oschina.net/leekezhou/blog/75156