Jquery easyui 1.2.4中tabs新建標籤設置href會提交兩次請求,這個問題應該說是個挺嚴重的bug,換用1.2.3版本就沒有這個問題。猜測easyui是修改了panel的加載機制或緩存機制吧,總之在options中添加closed: true這個屬性就能夠解決這個問題。不過以爲有點奇怪的感受。以下示例:<div id="tt" class="easyui-tabs" style="width:500px;height:250px;"> <div title="Tab1" style="padding:20px;display:none;"> tab1 </div> <div title="Tab2" closable="true" style="overflow:auto;padding:20px;display:none;"> tab2 </div> <div title="Tab3" iconCls="icon-reload" closable="true" style="padding:20px;display:none;"> tab3 </div></div><a id="aa" class="easyui-linkbutton">aaa</a><script type="text/javascript"> $(function(){ $('#tt').tabs({ border: false, onSelect: function(title){ //alert(title + ' is selected'); } }); $("#aa").click(function(){ $('#tt').tabs('add', { title: 'New Tab', href: '/test.html', closable: true, closed: true }); }); });javascript