在jQuery中使用值或标签文本获取ID

时间:2018-09-28 06:36:51

标签: javascript jquery html

<label class="" for="option1">
  <input title="Select All" type="checkbox" id="option1" value="Select All" />
  Select All
</label>

现在,我想使用Jquery使用值或标签text =“ Select All”获取输入的ID。 帮我弄清楚,谢谢。

1 个答案:

答案 0 :(得分:3)

使用属性选择器$('[title="Select All]"]')

$(document).ready(function(){
  var id = $('[title="Select All"]').attr('id');
  console.log(id);
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<label class="" for="option1">
<input title="Select All" type="checkbox" id="option1" value="Select All" />
Select All
</label>