用文本填充div

时间:2012-05-25 14:43:02

标签: javascript jquery html

我有div

<div id="shoppingBasket">
</div>

使用Javascript或Jquery如何用默认文本填充它:

you have no products in your shopping basket.

默认文字的含义是我想在点击产品后更改文字。所以也许是变量中的默认文本,然后通过JavaScript或Jquery包含在div中,这将允许操作变量。

3 个答案:

答案 0 :(得分:23)

您可以使用jQuery text()或javascript innerText

来完成此操作

使用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.";

答案 1 :(得分:8)

使用jQuery,这将是:

$('#shoppingBasket').text("you have no products in your shopping basket.");

使用常规javascript:

document.getElementById("shoppingBasket").innerHTML = "you have no products in your shopping basket.";

答案 2 :(得分:3)

function fillwithtext(text, elementID) {
    document.getElementById(elementID).innerHTML = text;
}

怎么样?