Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试向我的应用程序添加一些基本的纯文本工具提示。
我怎么能用 JQuery 做到这一点我只需要在一些文本框和按钮上添加一些工具提示。
对不起,我还是这个领域的新手。
谢谢
设置标题属性:
<input type="text" title="this is a tooltip"></input>
您可以为此使用jQuery工具提示
这很简单。你可以使用like
<script> $(function() { $( document ).tooltip(); }); </script>