这是我的选择器的样子:
$("#testMyCard-123 > div.test1 > div.test3 > tr > h4");
一切都工作了一段时间,但随后123
号变为456
。当$("#test-123...
变为$("test-456...
一次包含的正确方法是什么,例如$("#testMyCard-123...contains('testMyCard'...
答案 0 :(得分:0)
您可以使用id
作为属性的attribute starts with伪选择器:
$("[id^=testMyCard] > div.test1 > div.test3 > tr > h4");