• iframe 与简单的 tab


    <script type="text/javascript">
            $().ready(function () {
                $(function () {
                    $("#tabUl li:first").addClass("active");
                    $("#tabUlb div:gt(0)").hide();
                    $("#tabUl li").click(function () {
                        $(this).addClass("active").siblings("li").removeClass();
                        $(".tab div.tab_content:eq(" + $(this).index() + ")").show().siblings("div").hide();
                    });
                });
            });  
        </script>

    <style>

     .tab #tabUl, li { margin:0px; padding:0px; list-style:none; text-align:left;}    
     .tab #tabUl li { display: inline-block; zoom: 1; *display: inline;  color:#444; text-align:center; padding:1px 10px; cursor:pointer;border-bottom:solid 3px #eee;}    
     .tab  #tabUl .active{ color:Red; border-bottom:solid 3px red;text-align:center; padding:1px 10px; cursor:pointer;}   
     .tab_content { text-align:left; padding-top:20px; }
     

    </style>

     <ul id="tabUl">
           
    <li>产品简介</li>

    <li>规格参数</li>

    <li>套装详情</li>

    <li>操作指南</li>

    </ul>

    <div class="tab_content"></div>

    <div class="tab_content"></div>

    <div class="tab_content"></div>

    <div class="tab_content"></div>

    </div>

      <iframe src="" id="Iframe" frameborder="0" scrolling="no" style="border:0px;100%;" onload="autoHeight();"></iframe>

    <script type="text/javascript">
        function autoHeight() {
            var iframe = document.getElementById("Iframe");
            if (iframe.Document) {//ie自有属性
                iframe.style.height = iframe.Document.documentElement.scrollHeight;
            } else if (iframe.contentDocument) {//ie,firefox,chrome,opera,safari
                iframe.height = iframe.contentDocument.body.offsetHeight;
            }
        }
    </script>

     $(function () {

            $("#Iframe").attr("src", "/products/X11.htm");

                      autoHeight();

            });
        })

  • 相关阅读:
    WIA Property Constant Definitions
    未能导入activex控件,请确保它正确注册"的完美解决方案
    ILSpy反编译工具的使用
    WIA
    在C#中使用WIA获取扫描仪数据
    在C#中使用WIA获取扫描仪数据(利用Filter处理图片)
    VS2010中,无法嵌入互操作类型“……”,请改用适用的接口的解决方法
    怎么添加项目到SVN上面
    数学家帮你找出最佳求职者 你只要先淘汰前37%的人
    程序员7大软技能测验 你得几分?
  • 原文地址:https://www.cnblogs.com/tangself/p/2585832.html
Copyright © 2020-2023  润新知