javascript – 用文字填充div

前端之家收集整理的这篇文章主要介绍了javascript – 用文字填充div前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个div:
<div id="shoppingBasket">
</div>

使用Javascript或Jquery我将如何用默认文本填写:

您的购物篮中没有商品.

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

解决方法

你可以使用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.";
原文链接:https://www.f2er.com/js/152445.html

猜你在找的JavaScript相关文章