如何将选择的 twitter 引导选项卡包装为一种形式

How to wrap a selection of twitter bootstrap tabs as one form?(如何将选择的 twitter 引导选项卡包装为一种形式?)
本文介绍了如何将选择的 twitter 引导选项卡包装为一种形式?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个 twitter 引导标签组件.

I have a twitter bootstrap tabs componenet.

我希望两个选项卡成为表单的一部分.第三个不是.

I want two of the tabs to be part of a form. and the third to not be.

所以我想,我只需将两个选项卡包装在一个表单中.

So I thought, I'll just wrap the two tabs in a form.

但它不起作用:http://jsfiddle.net/gLrr4/1/

基本上,当类被应用到正确的元素时,表单似乎正在阻止各个选项卡改变它们的可见性.

Basically whilst the classes get applied to the right elements, it seems that the form is stopping the respective tabs from changing their visibility.

我该如何解决这个问题?

How can I fix this?

演示:http://jsfiddle.net/gLrr4/1/
演示代码:

Demo: http://jsfiddle.net/gLrr4/1/
Demo Code:

<html>
<head>
    <link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css" type="text/css"/>
    <script src='http://twitter.github.com/bootstrap/js/bootstrap-tab.js'></script>
</head>
<body>
<div class="alert alert-error">Tab 1 and two are wrapped in a form tag!</div>
<div class='row'>
    <div class="span12">

        <div class="tabbable">
            <ul class="nav nav-tabs">
                <li class="active"><a href="#tab1" data-toggle="tab">#tab1</a></li>
                <li><a href="#tab2" data-toggle="tab">#tab2</a></li>
                <li><a href="#tab3" data-toggle="tab">#tab3</a></li>
            </ul>

            <div class="tab-content">
                <form class="form-vertical">
                    <div class="tab-pane active" id="tab1">
                        <div class="alert alert-info">
                            This is #tab1
                        </div>
                        <div class='form-actions'>
                            <button type='submit' class='btn btn-primary'>Save changes</button>
                            <button id='cancel' class='btn'>Cancel</button>
                        </div>
                    </div>

                    <div class="tab-pane" id="tab2">
                        <div class="alert alert-info">
                            This is #tab2
                        </div>
                        <div class='form-actions'>
                            <button type='submit' class='btn btn-primary'>Save changes</button>
                            <button id='cancel' class='btn'>Cancel</button>
                        </div>
                    </div>
                </form>

                <div class="tab-pane" id="tab3">
                    <div class="alert alert-info">
                        This is #tab3
                    </div>
                </div>
            </div>

        </div>
    </div>
</div>

</body>
</html>​

推荐答案

好的,

找到解决方案:

使用一点 Javascript:

With a little bit of Javascript:

$('a[data-toggle="tab"]').on('shown', function (e) {
    $(e.target.hash).closest('.tab-content')
        .find('> form > .tab-pane.active:not(' + e.target.hash + '), 
               > .tab-pane.active:not(' + e.target.hash + ')')
        .removeClass('active');
});

还有一点css:

.tab-content > form > .tab-pane,
.pill-content > form > .pill-pane {
    display: none;
}
.tab-content > form > .active,
.pill-content > form > .active {
    display: block;
}

我们现在可以在表单中嵌套选项卡,当然这只支持表单标签,不支持任何子标签,
我可以通过删除 > 使其支持任何元素,但问题是如果我们有嵌套的选项卡,它会级联!

We can now nest the tabs in a form, Of course this only supports form tags, not any child,
I could make it support any element by removing the >'s but the issue is that that would cascade down if we had nested tabs!

这篇关于如何将选择的 twitter 引导选项卡包装为一种形式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)