私は次のコードを持っています。コードのどこにハイパーリンクがないのか分かりません。私の現在のurlに#をつけて続けます。私はまだjqueryの新しいですので、私を許してください。jquery、私のhttpパスのバグ
おかげ
<script type="text/javascript">
// $(function(){
// // Tabs
// $('#tabs').tabs();
// });
if ($.browser.msie) {
alert('Website will not be supported in IE, Please use FireFox ');
window.location.replace('nosupportforie.html');
}
// 7 15 2011 EXPERIMENT:
var tabs,
tabulation = false,
initialTab = 'Instructions',
navSelector = '#tabs .ui-tabs-nav',
navFilter = function(el) {
return $(el).attr('href').replace(/^#/, '');
},
panelSelector = '#tabs .ui-tabs-panel',
panelFilter = function() {
$(panelSelector + ' a').filter(function() {
return $(navSelector + ' a[title=' + $(this).attr('title') + ']').size() != 0;
}).each(function(event) {
$(this).attr('href', '#' + $(this).attr('title').replace(/ /g, '_'));
});
};
if ($.address.value() == '') {
$.address.value(initialTab);
}
// Address handler
$.address.history(false).strict(false).wrap(true).init(function(event) {
// Adds the ID in a lazy manner to prevent scrolling
$(panelSelector).attr('id', initialTab);
// Enables the plugin for all the content links
$(panelSelector + ' a').address(function() {
return navFilter(this);
});
panelFilter();
// Tabs setup
tabs = $('#tabs')
.tabs({
load: function(event, ui) {
// Filters the content and applies the plugin if needed
$(ui.panel).html($(panelSelector, ui.panel).html());
panelFilter();
},
})
.css('display', 'block');
// Enables the plugin for all the tabs
$(navSelector + ' a').click(function(event) {
tabulation = true;
$.address.value(navFilter(event.target));
tabulation = false;
return false;
});
}).change(function(event) {
var current = $('a[href=#' + event.value + ']:first');
// Sets the page title
$.address.title($.address.title().split(' | ')[0] + ' | ' + current.text());
// Selects the proper tab
if (!tabulation) {
tabs.tabs('select', current.attr('href'));
}
}).externalChange(function(event) {
// Select the proper tab
tabs.tabs('select', $(currentSelector(event.value)).attr('href'));
}).history(true);
....
<div id="tabs">
<ul>
<li><a href="#Instructions" title="Instructions" >Instructions</a></li>
<li><a href="#Documentations" >Documents</a></li>
<li><a href="#DataExtraction" >Data Extraction</a></li>
<li><a href="#FAQ">FAQ</a></li>
<li><a href="#UserInfo" >User Info</a></li>
</ul>
...
<script>
$.get("cgi_scripts/main_userinfo.cgi",function(data){$("#UserInfo").html(data)});
$.get("cgi_scripts/main_faqpage.cgi",function(data1){$("#FAQ").html(data1)});
$.get("cgi_scripts/main_intro_page.cgi",function(data2){$("#Instructions").html(data2)});
$.get("cgi_scripts/main_documentation.cgi",function(data2){$("#Documentations").html(data2)});
私は理解していない、私の問題は、ページ上の私の外部リンク – Gordon
@Gordonであります外部のもの? –
彼らは私の他のページのどこかにあると言います。www.google.com – Gordon