我正在使用 jQuery UI 工具提示小部件,它似乎在 Internet Explorer 中的选择标签上中断。所以我从初始化中排除了选择标签。但是,这似乎不起作用,因为 Internet Explorer 现在缺少所有增强的工具提示。
这是我之前没有使用 IE 选择标签的内容:
<script>j(document).tooltip();</script>
现在我正在切换到这段代码。j(document).not("select")
防止显示增强的工具提示。如何使此代码工作?
<!--[if IE]>
<script>j(document).not("select").tooltip();</script> <-- Doesn't Work
<![endif]-->
<!--[if !IE]>
<script>j(document).tooltip();</script>
<![endif]-->
我也从这个线程尝试了这段代码,但它仍然没有用。任何浏览器中都没有显示任何 jQuery UI 工具提示。
<!--[if IE]>
<script>j('*').tooltip(); j('select').tooltip('disable');</script>
<![endif]-->
<!--[if !IE]>
<script>j(document).tooltip();</script>
<![endif]-->
更新:
我试过了,又回到了我开始的地方:
<script>j('*').tooltip();</script>
<!--[if IE]>
<script>j('select').tooltip('disable');</script>
<![endif]-->