Changing the selected option with jQuery

This question already has an answer here:

  • Change the selected value of a drop-down list with jQuery 15 answers

  • 这确实有效,但是你需要在val()包含你想要选择的参数的值作为参数,例如:

    $("#idSelect").val('1');
    

    .val()传递需要设置的参数值:

    $("#idSelect").val('0');
    

    将val中的值添加为

    $("#idSelect").val(0); 
    
    链接地址: http://www.djcxy.com/p/83916.html

    上一篇: j时选择列表文本不变

    下一篇: 使用jQuery更改选定的选项