我正在使用插件的插件,如果我设置了链接 www.mysite.com/page#tab2,该URL如何打开选项卡,这是他们的结构:
$table_name2='implementationhow';
$sql= "CREATE TABLE $table_name2 (
`howID` int(11) unsigned NOT NULL AUTO_INCREMENT,
`strategyID` int(11) NOT NULL,
`how` varchar(250) NOT NULL DEFAULT '',
`is_default` int(11 ) NOT NULL DEFAULT '1',
`userID` int(11),
PRIMARY KEY (`howID`)
) ";
dbDelta( $sql );
答案 0 :(得分:1)
基于您的HTML
结构:
if (window.location.hash) {
$('[data-target="' + window.location.hash + '"]')
.closest('li').addClass('active')
.siblings('li').removeClass('active');
}