搜尋

首頁  >  問答  >  主體

javascript - easyUI和jquery選擇器

            <p class="fitem">
                <label class="formalg">设备名称:</label>
                <select class="easyui-combobox" name='deviceId' style="width:100px;">
                    <option value="4100001">入口</option>
                </select>
            </p>

就這麼一個p,我要得到slect選擇項的text,也就是入口。
$(":selected").text()$("select").find("option:selected").text();都不行,因為還有多個選擇框,$("select[name='deviceId']").find("option:selected").text();傳回空字串。
EasyUI改了dom樹,看來只能加個id了。

阿神阿神2810 天前598

全部回覆(3)我來回復

  • 为情所困

    为情所困2017-05-19 10:33:21

    $("選項[value='4100001']").val();

    回覆
    0
  • 漂亮男人

    漂亮男人2017-05-19 10:33:21

    取得select 選取的 text :

    $(".easyui-combobox").find("option:selected").text();

    回覆
    0
  • 我想大声告诉你

    我想大声告诉你2017-05-19 10:33:21

    $("select[name='deviceId']").val();

    回覆
    0
  • 取消回覆