jQuery buttonの値の取得

2775 ワード

フロントエンドコードは次のとおりです.
<div class="Tag-removable btn-group" role="group" aria-label="...">
    <button id="" type="button" class="btn btn-success btn-xs">{{$v.Tag_name}}button>
    <button type="button" class="btn btn-success remove btn-xs">
        <span class="glyphicon glyphicon-remove" aria-hidden="true">span>
    button>
div>

最初のbutton要素の値を取得します.
$("div.Tag-removable").find("button:first-child").text();

または
$("div.Tag-removable").find("button").get(0).text();

または
$("div.Tag-removable").find("button").first().text();