我正在尋找一個插件/示例/教程,將告訴我如何深入鏈接jQuery的標籤和嵌套選項卡。有誰知道我在哪裏可以找到這樣的例子?我想添加到一個網站,但我不知道從哪裏開始。深入鏈接jquery標籤
0
A
回答
2
的Asual的jQuery插件地址應該是排序爲你,大量的實例以及http://www.asual.com/jquery/address/或在github https://github.com/asual/jquery-address
或者你可以嘗試本alman的jQuery的燒烤插件
希望幫助!
1
所有使用'select'方法的解決方案都不適用於更高版本的jquery選項卡。 現在通過將選項激活到選項卡的所需int(偏移量爲0)來完成。 而且這個函數比jQuery地址插件更輕量級(更不用說全功能)。
function initTabs() {
var tabIndex = {'yourTabID-1':0,'yourTabID-2':1,'yourTabID-3':2}
var re = /#\w+$/; // This will match the anchor tag in the URL i.e. http://here.com/page#anchor
var match = re.exec(document.location.toString());
match = location.hash;
if (match != null) var anchor = match.substr(1);
for (key in tabIndex) {
if (anchor == key) {
selectedTab = tabIndex[key];
break;
}
else selectedTab = 0;
}
$("#tabs").tabs("option", "active", selectedTab);
//following part only if You need copyable deeplinks
$("#tabs").on("tabsactivate", function(event, ui) {
var re = /#\w+$/;
var url = document.location.toString();
var newHash = 'yourTabID-' + ui.newTab.context.id.substring(6);
window.location.hash = newHash;
});
}
相關問題
- 1. jQuery地址子標籤(嵌套標籤)(深層鏈接)
- 2. 刪除標籤時的深層鏈接
- 3. jQuery深度鏈接
- 4. 通過NFC標籤深入鏈接到應用(特定活動)
- 5. jQuery深入鏈接Web應用程序
- 6. android深入鏈接增加
- 7. 深入鏈接Xamarin iOS
- 8. 鏈接標籤
- 9. iOS深度鏈接和通用鏈接,如何在ios中深入鏈接
- 10. jQuery工具標籤 - 從另一個文本鏈接鏈接到標籤?
- 11. jQuery插件trasforming IMG標籤,鏈接
- 12. 添加鏈接到jQuery標籤
- 13. jQuery鏈接到一個標籤
- 14. jQuery標籤鏈接,而不是ajax
- 15. jquery鏈接到特定標籤
- 16. 運行jQuery的功能鏈接標籤
- 17. jQuery UI標籤鏈接_blank頁面
- 18. 使用jquery鏈接到標籤
- 19. 超鏈接到jQuery的標籤
- 20. 從鏈接標籤
- 21. 的鏈接標籤
- 22. 鏈接標籤內
- 23. 在深度鏈接的基礎部分內使用錨標籤
- 24. 在選擇標籤內插入鏈接?
- 25. 在表單標籤中加入鏈接?
- 26. 輸入標籤內的鏈接
- 27. Javascript - 寫入新標籤的鏈接
- 28. Jquery通過鏈接打開子標籤(嵌套標籤)
- 29. jQuery選項卡。在標籤內鏈接到標籤
- 30. jquery提到輸入:點擊鏈接添加標籤
...其實,我更傾向爲[history.js(https://github.com/balupton/History.js/)現在,需要多花點心思/技能,但不過如此我以前的建議! – NukeOurLimo 2012-11-05 10:57:34