选择框,到 url(但直接到选项卡)
好的,我有两个页面:
带有 ajax 选项卡的页面 A 有选择菜单
页面 B在选择下拉框中的页面 B 上
<form name="mssgMenu">
<div class="field2">
<select id="moreActions" name="moreActions" class="small" onchange="if(this.options[this.selectedIndex].value != ''){window.top.location.href=this.options[this.selectedIndex].value}">
<option selected="selected" value="">More Actions
<option value="">Inbox
<option value="">Sent Mail
<option value="">Compose new Message
<option value="pageA.php#tab4">bugMe
</select>
</div>
</form>
,我有:在页面 AI 上有选项卡(假设选项卡 4 引用为)
<li><a href="#tab4"><span class="Mssg">HelloWorld</span></a></li>
那么我如何获取选择框、链接到超链接并打开选项卡?页
Ok I have two pages:
Page A with ajax tabs
Page B with select menu
on page B in the select drop down box, I have:
<form name="mssgMenu">
<div class="field2">
<select id="moreActions" name="moreActions" class="small" onchange="if(this.options[this.selectedIndex].value != ''){window.top.location.href=this.options[this.selectedIndex].value}">
<option selected="selected" value="">More Actions
<option value="">Inbox
<option value="">Sent Mail
<option value="">Compose new Message
<option value="pageA.php#tab4">bugMe
</select>
</div>
</form>
On Page A I have the tab ( lets say tab 4 referenced as )
<li><a href="#tab4"><span class="Mssg">HelloWorld</span></a></li>
So how do I get the select box, link to hyperlink and to open the tab ?page
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以执行 url,然后在另一个页面上使用参数 #tab2 和 javascript 将其打开
you can execute url and then on another page use parameter #tab2 with javascript to open it
如果您使用的是 jQueryUI 选项卡,请
在页面 B 上更改最后一个选项,如下所示
在页面 A 上
If you are using jQueryUI tabs, do these
On Page B change last option like this
And on Page A