<div id="shoppingBasket"> </div>
使用Javascript或Jquery我将如何用默认文本填写:
您的购物篮中没有商品.
我的意思是默认的文字是我想要更改文本后点击一个产品.所以也许在变量中的默认文本,然后通过JavaScript或Jquery包含在div中,这将允许操作变量.
用jquery,使用jQuery text()
$('#shoppingBasket').text("you have no products in your shopping basket.");
使用Javascript,使用innerText
document.getElementById("shoppingBasket").innerText = "you have no products in your shopping basket.";