Jquery加载不工作IE - 用于在使用Jquery打印之前预览DIV

时间:2013-07-17 03:15:40

标签: javascript jquery

我正在使用此代码,在页面中加载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>  

0 个答案:

没有答案