为什么在 :contains() 中使用变量不起作用?有什么办法让它工作吗?filter('contains()')
也没有用。
<h2>Test</h2>
<div>Test</div>
var model = $('h2').text();
//variable doesn't work
$('div:contains(model)').css('background','yellow');
//obviously, string works
$('div:contains("Test")').css('background','yellow');