MVC go to specific tab using Jquery

ε祈祈猫儿з 提交于 2019-12-25 05:34:13

问题


I am doing this in .net MVC 4 & I have made tabs using

<div id="tabs">
<ul>
    <li><a href="#tab-1">Tab 1</a></li>
    <li><a href="#tab-2">Tab 2</a></li>
    <li><a href="#tab-3">Tab 3</a></li>
    <li><a href="#tab-4">Tab 4</a></li>
</ul></div>

I want to go in a specific tab for example in (Tab 4), I am using this line of code but no Success, here (".btn") is the class when the link is clicked.

<script type="text/javascript">
        $(".btn").click(function () {
        $("#tabs").tabs('select', "#tab-4");
        });
</script>

I have also used some thing like this: $("#tabs").tabs({"option", "", 3});

Please tell me the raight way to get rid of this.


回答1:


From the docs, the option you are looking for is active:

{ active: index }

Where index is a zero-based index. So your code needs to be:

$(".btn").click(function () {
    $("#tabs").tabs({ active: 3 });
});

Here is a fiddle of the above.



来源:https://stackoverflow.com/questions/20090656/mvc-go-to-specific-tab-using-jquery

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!