Skip to Content
JavaScript 经典实例:第三版
book

JavaScript 经典实例:第三版

by Adam D. Scott, Matthew MacDonald, Shelley Powers
September 2022
Intermediate to advanced
585 pages
8h 17m
Chinese
China Electric Power Press Ltd.
Content preview from JavaScript 经典实例:第三版
处理
HTML
319
//
否则,把新段落添加到
div
元素最后
if
(paras[2]) {
div.insertBefore(newPara, paras[2]);
}
else
{
div.appendChild(newPara);
}
12.10.3
讨论
document.createElement()
方法可以创建任何
HTML
元素。创建好之后,便可以
把元素插入或添加到页面中。在上述方案中,我们使用
insertBefore()
方法把
段落元素插入到某个现有段落前面。
由于我们想把新段落插入到当前的第三个段落前面,因此要获取
div
元素中的所有
段落,确保存在第三个段落之后,再使用
insertBefore()
方法把新段落插入到现
有段落的前面。如果不存在第三个段落,那就使用
appendChild()
方法,把新段落
元素添加到
div
元素的最后。
12.11
检查有没有勾选复选框
12.11.1
问题
你想确认用户有没有勾选应用中的某个复选框。
12.11.2
方案
通过
checked
属性勾选复选框及验证状态。在这个示例中,笔者选中一个
id
check
HTML input
复选框,然后监听单击事件。触发该事件时,
validate
数运行,检查元素的
checked
属性,把状态记录到控制台。
const
checkBox = document.getElementById('check');
const
validate = () => {
if
(checkBox.checked) {
console.log('Checkbox ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

JavaScript Patterns

JavaScript Patterns

Stoyan Stefanov
JavaScript

JavaScript

David Flanagan
JavaScript

JavaScript

T. J. Crowder

Publisher Resources

ISBN: 9787519869601