• jquery selector只返回第一个元素 知乎取消点赞


    $(".VoteButton--up.is-active");只返回了一个元素,而不是一个数组

    发现页面https://www.zhihu.com/follow里面是无法访问jQuery的,不清楚知乎这个页面的$是怎么定义的

    function removeAllVotes(){
        var a = $(".VoteButton--up.is-active");
        var b = a.length;
        if (b > 0) {
            $('.VoteButton--up.is-active').first().trigger('click');
            setTimeout(removeVote, 1000);
            window.scrollTo(0,document.body.scrollHeight);
        }
    }
    removeAllVotes();

    不过document的api还是生效的,直接使用document.getElementsByClassName("VoteButton--up"),还是可以访问到多个元素

    Simple jQuery selector only selects first element in Chrome..?

    I'm a bit new to jQuery so forgive me for being dense. I want to select all <td> elements on a particular page via Chrome's JS console:

    $('td')
    

    Yet when I do this, I get the following output:

    <td>Apples</td>
    

    Isn't jQuery supposed to return an array of elements with the <td> tag? Why am I only seeing the first element that matches this criteria?

    Here is the site in question: http://www.w3schools.com/html/html_tables.asp

    EDIT: I'd like to add that when I type a jQuery function into Chrome console, I do NOT get a jQuery object back. I get a plain HTML element. Something must be wrong with the way my Chrome is set-up/configured.

    回答

    If jQuery isn't present on the webpage, and of course no other code assigns something to $, Chrome's JS console assigns $ a shortcut to document.querySelector().

    You can achieve what you want with $$(), which is assigned by the console a shortcut to document.querySelectorAll().

    To know if the page contains jQuery, you can execute jQuery in the console. To know if jQuery is assigned to $, you can execute $().jquery which will return jQuery version if that's the case.

    Also, there are browser addons to inject jQuery in every webpage.

    在console里面,尝试输入jQuery是无法识别的。可以用两个$来表示筛选所有,$$(".VoteButton--up")

  • 相关阅读:
    centos6.5升级gcc 4.4.7为最新版4.9.1
    vmware打开虚拟级断电情况下,无法找到虚拟机文件
    centos /usr/local 和/opt 安装软件你什么不同../configure --prefix=/usr...
    centos安装git
    P1207 双重回文数
    P1214 等差数列
    P1215 母亲的牛奶
    P1217 回文质数
    P3650 滑雪课程设计
    NOIP 2015[D2 T1] 跳石头
  • 原文地址:https://www.cnblogs.com/chucklu/p/14305972.html
Copyright © 2020-2023  润新知