我有这个选择:
<select id="987_country">
但是我只知道ID以“国家/地区”结尾。
我如何使用以下方式引用它(987_country)
$('#myIdName ')
答案 0 :(得分:3)
尝试使用attributeEndsWith选择器
选择具有指定属性且元素值完全以给定字符串结尾的元素。比较是区分大小写的。
$('[id$=country]')
console.log($('[id$=country]')[0].nodeName)
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<select id="987_country"></select>