本文摘自PHP中文网,作者逆旅行人,侵删。

在JavaScript
中获取元素只是第一步,如何对元素的属性进行更改才是接下里的重要步骤,本文主要讲述了如何在JS
中更改DOM
元素的内容。
HTML表单内容:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "UTF-8" >
< meta http-equiv = "X-UA-Compatible" content = "IE=edge" >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
< title >Document</ title >
</ head >
< body >
< div class = "box" >
< p ></ p >
</ div >
</ body >
</ html >
|
1.textContent:
1 2 3 4 5 6 7 8 9 | <script>
const box=document.querySelector( ".box" );
console.log(box);
const p=document.querySelector( 'p' );
console.log(p);
p.textContent = "hello world" ;
</script>
|
2.innerText:
1 2 3 4 5 6 7 8 | <script>
const box=document.querySelector( ".box" );
console.log(box);
const p=document.querySelector( 'p' );
console.log(p);
p.innerText = "php.cn" ;
</script>
|
3.innerHTML:
1 2 3 4 5 6 7 8 | <script>
const box=document.querySelector( ".box" );
console.log(box);
const p=document.querySelector( 'p' );
console.log(p);
p.innerHTML= '<em style="color:red">php.cn</em>' ;
</script>
|
推荐:《2021年js面试题及答案(大汇总)》
以上就是如何在JS中改变DOM元素的文本内容的详细内容,更多文章请关注木庄网络博客!
相关阅读 >>
详解javascript中的proxy(代理)
ie浏览器不支持javascript怎么办
介绍javascript 内存管理+如何处理4个常见的内存泄漏
javascript实现继承的方式有哪些
javascript最后怎么表示
详解javascript是如何运行的
javascript如何阻止事件冒泡和事件本身发生
javascript页面跳转代码有哪些
javascript如何设置width
javascript中show方法怎么用
更多相关阅读请进入《javascript》频道 >>
人民邮电出版社
本书对 Vue.js 3 技术细节的分析非常可靠,对于需要深入理解 Vue.js 3 的用户会有很大的帮助。——尤雨溪,Vue.js作者
转载请注明出处:木庄网络博客 » 如何在JS中改变DOM元素的文本内容