我有一些电子商务javascript,一旦加载就会在我的页面中插入额外的html。我想要做的是添加电子商务html更多我的自定义HTML。我已经确定了我想要附加的特定电子商务元素并编写了下面的代码,但它似乎无法找到该元素。即使在加载电子商务html之后,代码也会继续循环。我在这里错过了什么。
var intervalId;
function checkForShopButton() {
intervalId = window.setInterval(updateShopButton, 500);
}
function updateShopButton() {
if ($(".pricing").length) {
clearInterval(intervalId);
$(".pricing").append("<div>Review And Buy</div>");
}
}
window.onload = checkForShopButton();
答案 0 :(得分:0)
试试这个jquery hack
$(function(){
$(".pricing").append("<div>Review And Buy</div>");
});