1

我面临一个奇怪的问题,我使用 jquery UI 选项卡并通过选项卡内的 AJAX 加载外部 JSP。在 IE 7、8、9 中一切正常,但是当我使用 Firefox 16.x 时,它会渲染内容,但按钮、超链接、下拉列表等内容操作项都是可见的,但有点被禁用,即我不能单击它们并执行一些操作。如果它是已知问题或我忽略了某些问题,请告诉我。PFB 我在 JSP 中使用的 JS 和 HTML 代码。我在struts 1.xx 框架中使用jquery。

 $(document).ready(function() {


   $( "#tabs" ).tabs({
         beforeLoad: function( event, ui )
          {   
          $("#loading-imageTab").show();
          ui.jqXHR.success(function() {             $("#loading-imageTab").hide();        });

          ui.jqXHR.error(function() { 

                    $("#loading-imageTab").hide();
                   ui.panel.html(            "Couldn't load this tab. We'll try to fix this as soon as possible. "  ); 
                          }); 
          }
    });                 

JSP 主体内的内容

   <div id="tabs">
<ul>
    <li><strong class="first">
    <a href="#tabs1" id="tab1">TAB-1</a>
    </strong></li>
<li>
<strong>
<a href="paymentInquiry.do?tabIndicator=tab"id="tab2">AJAX-TAB2</a>
</strong>
</li>

</ul>

<div id="tabs1">
<!-- some content inside -->
</div>
</div>
4

0 回答 0