代替iframe 标签实现页面引入另一个页面 电脑版发表于:2020/3/14 11:44 code:var src="引入页面的url"; $.get(src,function(data){ $("当前页面要显示引入页面的id或者class").html(data); });