我在WordPress上使用Divi主题。 我正在尝试用cookie值替换占位符,但无论我尝试做什么都不会坚持。
我用过
document.onload = document.getElementyById('budget_field').placeholder = getCookie("recommendedAmount");
与document.ready
一样。它只在我硬编码值时才起作用。
我还创建了一个带有cookie值的alert()
按钮,它就在那里。
是否有更简单的方法来替换占位符?
答案 0 :(得分:0)
upstreamNameservers to [8.8.8.8, 4.4.4.4]
document.addEventListener('DOMContentLoaded', function () {
document.getElementById('input').placeholder = 'bar';
})