定位工具提示jquery

时间:2015-06-23 09:25:02

标签: javascript jquery html

我有工具提示,但我在ie5:http://jsfiddle.net/pnv4xus4/

中遇到问题

在mozilla和chrome正确显示时,文本框下方的工具提示:

enter image description here

在我的ie5中,工具提示出现在页面的左侧,完全不合适。为了解决这个问题,我改变了以下内容:

<script>
    $(function () {
        $('input.age').tooltip({
            position:'bottom bottom',
            relative:true,
            content: function () {
                return $(this).attr('title');
            }
        });
        $('input.age').tooltip('open')
    });
</script>

也就是说,我在这里添加了位置,但它问我如下(工具提示在输入上方,我想在下面):

enter image description here

找到很难成为ie5版本,有没有办法让工具提示得到修复,无论版本和浏览器如何?

0 个答案:

没有答案