使用 qtip 替换页面上的所有标题属性

发布于 2024-11-04 02:28:09 字数 734 浏览 5 评论 0原文

有没有办法让所有title属性都变成qtips?

现在我只是浏览并找到所有需要完成的标签,但这很慢而且不可靠。

相反,

$(document).ready(ImportantFunction);
    function ImportantFunction() {
        Sys.Application.add_load(function () {
            $find("ctl31").add_propertyChanged(viewerPropertyChanged);
        });
    }

    function viewerPropertyChanged(sender, e) {
        if (e.get_propertyName() === "isLoading") {
            var viewer = $find("ctl31");
            if (!viewer.get_isLoading())
            {
                $('table[title]').qtip();
                $('td[title]').qtip();
                $('input[title]').qtip();
                $('a[title]').qtip();
            }
        }
    }//*/

如果可能的话,我只想调用它一次。

If there a way to have all title attributes become qtips?

Right now I'm just going through and finding all the tags that need to be done but this is slow and not reliable.

instead of this

$(document).ready(ImportantFunction);
    function ImportantFunction() {
        Sys.Application.add_load(function () {
            $find("ctl31").add_propertyChanged(viewerPropertyChanged);
        });
    }

    function viewerPropertyChanged(sender, e) {
        if (e.get_propertyName() === "isLoading") {
            var viewer = $find("ctl31");
            if (!viewer.get_isLoading())
            {
                $('table[title]').qtip();
                $('td[title]').qtip();
                $('input[title]').qtip();
                $('a[title]').qtip();
            }
        }
    }//*/

I just want to call it once if that is possible.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

毅然前行 2024-11-11 02:28:09

很简单:

$('[title]').qtip();

Pretty easy:

$('[title]').qtip();
乖乖哒 2024-11-11 02:28:09

使用 $.each() 代替怎么样?它可能看起来微不足道且相似,但它也可能会更快,因为您只在(希望)较小的子集上调用 qTip:

  $('[title]').each(function() {
      this.qtip({
           // init here
      });
 });

请注意,您也可以用逗号分隔选择器,因此您可以简单地执行以下操作:

  $('table[title],td[title],input[title],a[title]').each(function() {
      this.qtip({
           // init here
      });
 });

或者甚至:

  $('table[title],td[title],input[title],a[title]').qtip();

How about using $.each() instead? It probably seems trivial and similar but it also may go faster since you're only calling qTip on a (hopefully) smaller subset:

  $('[title]').each(function() {
      this.qtip({
           // init here
      });
 });

Note that you can also comma-separate your selectors, so you could simply do:

  $('table[title],td[title],input[title],a[title]').each(function() {
      this.qtip({
           // init here
      });
 });

Or even:

  $('table[title],td[title],input[title],a[title]').qtip();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文