如何使 Jquery 选项卡既能鼠标悬停又能单击打开页面?
它不会让我提交多个链接,所以请发挥你的想象力,我需要多个带有多个鼠标悬停或图像的选项卡,以便中间的东西是一张图像
<script type="text/javascript">
$(function() {
$("#tabs").tabs({event: 'mouseover'}).addClass('ui-tabs-vertical ui-helper-clearfix');
$("#tabs li").removeClass('ui-corner-top').addClass('ui-corner-right');
$('.openpage').click(function(){
window.location=$(this).attr('title');
});
});
</script>
<div id="tabs">
<ul>
<li><a href="#tabs-1" title="content1.html" class="openpage">content1</a></li>
</ul>
<div id="tabs-1"><imgimg src="/images/1.jpg" alt=""></div>
</div>
it wont let me submit more than one link, so please use your imagination, i need multiple tabs with mutliple mouse overs or images so that thing in the middle is an image
<script type="text/javascript">
$(function() {
$("#tabs").tabs({event: 'mouseover'}).addClass('ui-tabs-vertical ui-helper-clearfix');
$("#tabs li").removeClass('ui-corner-top').addClass('ui-corner-right');
$('.openpage').click(function(){
window.location=$(this).attr('title');
});
});
</script>
<div id="tabs">
<ul>
<li><a href="#tabs-1" title="content1.html" class="openpage">content1</a></li>
</ul>
<div id="tabs-1"><imgimg src="/images/1.jpg" alt=""></div>
</div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此代码取自 jQuery 文档。
HTML 代码。请注意,我已经添加了选项卡类。
现在,如果您想在选项卡上添加多种效果,您所要做的就是以下内容:
我还没有对此进行测试,但我认为它应该可以工作。
This code is taken from jQuery Docs.
HTML code. Note that I've added classes for tabs.
Now, if you want to add multiple effects on tabs, all you have to do is the following:
I've not tested this, but I think it should work.