0
這是我的頁面:https://3brow.com/loja 這裏是我已經嘗試過的所有代碼。 所有試圖用$(文件)。就緒(函數()而且,沒有工作爲什麼jquery不能在wordpress的小工具中工作?
$('#select2-select-pa_cor-container:contains("Todoscores")').text('another text');
$('#select2-select-pa_cor-container').each(function() {
var text = $(this).text();
$(this).text(text.replace('TodosCores', 'another text'));
});
$("#select2-select-pa_cor-container p:contains('TodosCores')").html("another text");
$('#select2-select-pa_cor-container:contains("TodosCores")').text('another text');
$('#select2-select-pa_cor-container').html($(this).html().replace('TodosCores','another text'));
$('#select2-select-pa_cor-container').each(function() {
var text = $(this).html();
$(this).html(text.replace('TodosCores', 'another text'));
});
$("#select2-select-pa_cor-container").replaceWith("<span>another text</span>");
我必須使用:「之前」到「工作」「顯示無」
我嘗試更改另一個div的佔位符,並使用相同的代碼嘗試使用另一個div並開始工作我正在使用wordpress,並且這兩個功能都無法使用widgets 任何人都可以解釋爲什麼在小部件中代碼不起作用,我該如何「修復」?
是的。我只是忘了放在那裏。有趣的是,我有另一個工作Jquery的小部件。 – Robert