在我的 html 文档中,我有这段代码
var client = new XMLHttpRequest();
client.open('GET', '(URL)example.txt');
client.onreadystatechange = function() {
var theblog = client.responseText;
$("#bloglocation").html(theblog);
}
client.send();
});
在那个加载的html中我有
<p class="example">example</p>
稍后在文件中,我使用 jquery 更改类示例中所有元素的颜色。
$('.example).css({"background-color" : "yellow"});
jquery 适用于不在加载的 html 中的具有该类的所有元素。我怎样才能让它为加载的 html 中的类工作。