关闭图标在Mozilla Firefox浏览器中不起作用

时间:2018-05-16 20:44:07

标签: javascript twitter-bootstrap firefox

我有一个在Chrome浏览器中效果很好的关闭图标。但是,它在Mozilla浏览器中不起作用或“关闭”。我尝试了不同的东西,但我无法解决它。什么在Mozilla中无效,我该如何解决?

<button type="button" class="close" aria-label="Close">
    <span aria-hidden="true" ng-click="c.resetModalFlow()">&times;</span>    
</button>

2 个答案:

答案 0 :(得分:0)

如果你使用twitter bootstrap,你需要像这样定义一个数据解析

<button type="button" class="close" aria-label="Close" data-dismiss="modal"></button>

答案 1 :(得分:0)

我刚删除了跨度并将所有内容放入我的按钮标记中。现在工作正常。

<button type="button" class="close" aria-label="Close" aria-hidden="true" ng-click="c.resetModalFlow()">&times;</button>