Twitter bootstrap 引导数据切换在移动设备上不起作用

Twitter bootstrap 引导数据切换在移动设备上不起作用,twitter-bootstrap,twitter-bootstrap-3,Twitter Bootstrap,Twitter Bootstrap 3,我试图实现一个数据切换,类似于在桌面浏览器上运行时的代码示例 这段代码的问题在于它不能在手机上运行。示例:三星(s6、s7)和苹果(Iphone 6s和7s) 常见问题 一般的 你的营业时间是几点? Lorem Ipsum只是印刷和排版行业的虚拟文本。自16世纪以来,Lorem Ipsum一直是行业标准的虚拟文本,当时一位不知名的印刷商拿起一个打印工具,将其拼凑成一本打印样本书。 最短储存期是多少? 你可以储存三个月。但是你储存的时间越长,你会省下越多的钱! 我希望它和浏览器一样,当你点击一

我试图实现一个数据切换,类似于在桌面浏览器上运行时的代码示例

这段代码的问题在于它不能在手机上运行。示例:三星(s6、s7)和苹果(Iphone 6s和7s)


常见问题
一般的
你的营业时间是几点?
Lorem Ipsum只是印刷和排版行业的虚拟文本。自16世纪以来,Lorem Ipsum一直是行业标准的虚拟文本,当时一位不知名的印刷商拿起一个打印工具,将其拼凑成一本打印样本书。
最短储存期是多少?
你可以储存三个月。但是你储存的时间越长,你会省下越多的钱!
我希望它和浏览器一样,当你点击一个问题时,它会触发并显示相应的答案

我目前得到的实际结果是,它对任何触摸/轻触都没有响应。我的菜单下拉菜单工作,等等,但数据切换似乎没有响应

我试过这些答案: / / /
但是它们似乎都不适合我

尝试将
href=“#”
添加到
创建一个JSFIDLE,您可以轻松复制
<div class="row">
        <div class="faq">   
            <div class="container">
                <div class="col-md-12">
                    <h1>FREQUENTLY ASKED QUESTIONS</h1>
                </div>
                <table class="table">
                    <thead>
                        <th>General</th>
                    </thead>

                    <tbody>
                        <tr data-toggle="collapse" data-target="#faq6" class="clickable faq-header">
                            <td>What are your hours of operation?
                            </td>
                        </tr>
                        <tr>
                            <td colspan="3">
                                <div id="faq6" class="collapse">
                                    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
                                </div>
                            </td>
                        </tr>

                        <tr data-toggle="collapse" data-target="#faq7" class="clickable faq-header">
                            <td>What is the minimum storage period?
                            </td>
                        </tr>
                        <tr>
                            <td colspan="3">
                                <div id="faq7" class="collapse">
                                    You can store as short as three months. But the longer you store the more money you will save!
                                </div>
                            </td>
                        </tr>
                    </tbody>
                </table>
            </div>
        </div>
     </div>