Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何选择 id 包含某个字符串的按钮?我问的原因是 asp.net webform 是将容器的名称添加到元素的 id 中。
$(document).ready(function () { $('input[submit]:addNewRow').click(function(){ //Do someting... }); });
按钮的id包含AddNewRow。
id
AddNewRow
感谢您的帮助
使用包含选择器的属性值。如果id包含“AddNewRow”,那就是
$("[id*='AddNewRow']")