Heim >Web-Frontend >HTML-Tutorial >jq ui 的toolstip 我只想input有提示_html/css_WEB-ITnose

jq ui 的toolstip 我只想input有提示_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 12:24:461132Durchsuche


如题,我只想有提示,

 $(document input).tooltip(); 这样写有不行,请问该怎么做?

    <script type="text/javascript" src="/Scripts/jquery-ui-1.10.3.custom/js/jquery-ui-1.10.3.custom.js"></script>    <link rel="stylesheet" type="text/css" href="/Scripts/jquery-ui-1.10.3.custom/css/ui-lightness/jquery-ui-1.10.3.custom.css" />    <script type="text/javascript">        $(function () {            $(document).tooltip();        });    </script><input type="submit" value="搜索(S)" accesskey="S" title=“test”>



回复讨论(解决方案)



刚刚问完,就想到方法了

    <script type="text/javascript">        $(function () {            $(document).find("input").tooltip();        });    </script>

选择器没写对

选择器没写对

你说的是这个  $(document input).tooltip(); 吗?

$(document).tooltip();

你这样写不就是对整个文档添加tooltip了,要缩小范围才行啊

$('input').tooltip();

$(document).tooltip();

你这样写不就是对整个文档添加tooltip了,要缩小范围才行啊

$('input').tooltip();

哦,非常感谢!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn