HTML onchange (this.value)

后端 未结 1 722
名媛妹妹
名媛妹妹 2021-02-20 14:59

We found this in our code (we haven\'t written it by our selfs, and we are new to programmng), can anyone explain what this.value means and how you change it?

&l         


        
相关标签:
1条回答
  • 2021-02-20 15:39

    this.value represents the selected value.

    Example:

    function getComboA(sel) {
        var value = sel.value;  
    }
    
    <select id="comboA" onchange="getComboA(this)">
    <option value="">Select combo</option>
    <option value="Value1">Text1</option>
    <option value="Value2">Text2</option>
    <option value="Value3">Text3</option>
    </select>
    

    The above example gets you the selected value OnChange event.

    0 讨论(0)
提交回复
热议问题