我有麻烦使twitter bootstrap工具提示的data-delay属性工作。我使用它像:
这里是我如何使用它:
<a href="#" data-toggle="tooltip" data-delay="{ show: 5000,hide: 3000}">with delay</a><script>jQuery('a[data-toggle="tooltip"]').tooltip().click( function(e) { e.preventDefault(); }); </script>
但我没有看到任何延迟显示/隐藏。任何想法为什么?
解决方法
最后,我得到它与数据属性。
data-delay='{"show":"5000","hide":"3000"}'
对象必须用单引号括起来,双引号的键和带double或none的值可能取决于类型。是唯一的工作方式。
这也适用于popovers。