我正在寻找我的网站进行更新(不使用仅搜索正文的类),并在来自推荐人时更新所选元素(图片,电话号码等)。
我有代码让它使用类来改变数字。
lastUrl = document.referrer;
if(lastUrl.search("website") == -1) {
$( ".snumber" ).each(function() {
$(this).html("0418 888 666");
});
}
我现在需要这个来处理多个元素而不仅仅是一个元素。
任何建议都会很棒。