jQuery id selector works only for the first element

后端 未结 7 1995
借酒劲吻你
借酒劲吻你 2020-11-22 02:55

I have 3 buttons with same id, I need to get each button value when he\'s being clicked.

7条回答
  •  醉话见心
    2020-11-22 03:32

    I have 3 buttons with same id ...

    You have invalid HTML, you can't have more than one element in a page with the same id.

    Quoting the spec:

    7.5.2 Element identifiers: the id and class attributes

    id = name [CS]
    This attribute assigns a name to an element. This name must be unique in a document.

    Solution: change from id to class,

    
    
    
    

    And the jQuery code:

    $(".xyz").click(function(){
        alert(this.value);
        // No need for jQuery :$(this).val() to get the value of the input.
    });
    

    But it works only for the first button

    jQuery #id selector docs:

    Each id value must be used only once within a document. If more than one element has been assigned the same ID, queries that use that ID will only select the first matched element in the DOM. This behavior should not be relied on, however; a document with more than one element using the same ID is invalid.

    If you look at the jQuery source you can see when you call $ with an id selecor-($("#id")), jQuery calls the native javascript document.getElementById function:

    // HANDLE: $("#id")
    } else {
        elem = document.getElementById( match[2] );
    }
    

    Though, in the spec of document.getElementById they didn't mention it must return the first value, this is how most of (maybe all?) the browsers implemented it.

    DEMO

提交回复
热议问题