我正在使用此代码在页面中加载 div。为此,我获取了 DIV 所在页面的 URL,并将获取的 DIV 替换为我页面中的 DIV。
div_PrintArea_loader - 我的打印页面中的 DIV div_Content - 在 div_PrintArea_loader 中获取和替换的内容
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script type="text/javascript">
var value = window.location.search;
$(document).ready(function () {
$("#div_PrintArea_loader").load(value.replace("?print=", "") + " #div_Content");
});
</script>