惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
Security Affairs
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
Jina AI
Jina AI
P
Palo Alto Networks Blog
GbyAI
GbyAI
大猫的无限游戏
大猫的无限游戏
A
Arctic Wolf
Hugging Face - Blog
Hugging Face - Blog
小众软件
小众软件
Y
Y Combinator Blog
T
The Blog of Author Tim Ferriss
Blog — PlanetScale
Blog — PlanetScale
S
Schneier on Security
V
Vulnerabilities – Threatpost
C
Cybersecurity and Infrastructure Security Agency CISA
雷峰网
雷峰网
T
Tenable Blog
人人都是产品经理
人人都是产品经理
T
Tor Project blog
C
Cyber Attacks, Cyber Crime and Cyber Security
AWS News Blog
AWS News Blog
Microsoft Security Blog
Microsoft Security Blog
J
Java Code Geeks
Scott Helme
Scott Helme
SecWiki News
SecWiki News
C
CERT Recently Published Vulnerability Notes
Recorded Future
Recorded Future
I
InfoQ
Security Archives - TechRepublic
Security Archives - TechRepublic
Help Net Security
Help Net Security
Cloudbric
Cloudbric
C
Check Point Blog
Engineering at Meta
Engineering at Meta
TaoSecurity Blog
TaoSecurity Blog
B
Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园_首页
N
News and Events Feed by Topic
云风的 BLOG
云风的 BLOG
MyScale Blog
MyScale Blog
腾讯CDC
量子位
Application and Cybersecurity Blog
Application and Cybersecurity Blog
K
Kaspersky official blog
Vercel News
Vercel News
F
Full Disclosure
T
Troy Hunt's Blog
Forbes - Security
Forbes - Security
S
Security @ Cisco Blogs

博客园 - JBoy

Update Cache js树 火狐对ajax同步的支持 快乐工作,好好学习! 年末琐事 做一个小总结 基于AJAX的Window资源管理器 DotText学习 开学前一周计划 终于知道如何用VS2005在类图状态下实现继承 可爱的病毒 悬棺 Factory Method And Abstract Factory .NET2.0中有关加密解密的知识 请看下面这段代码 - JBoy - 博客园 观察者模式与单例模式 Javascript真的是安全的脚本吗? Frontpage-Dreamweave-VisoStudio-Dreamweave-Ultraeditor 可怜的公平
JavaScript对DOM的解析 - JBoy - 博客园
JBoy · 2008-03-13 · via 博客园 - JBoy

用JavaScript解析DOM,在不现的浏览器上有不同的实现。
以后注意一下就可以了。

<ul> 
            
<li>1</li> 
            
<li>2</li> 
            
<ol>3</ol>
        
</ul> <!-- IE: 2; FF: 7 -->
        
        
        
<div id="main">
            
<div></div>
            
<div></div>
            
<input />
        
</div><!-- IE: 4; FF: 7 -->
        
        
<div><div></div><div></div><input /></div>

<div id="main">
            
<div></div>
            
<div></div>
            
<input type="password" name="password1"></input>
        
</div>
<!-- IE对<input ></input>的解析会出现错误,将一个标签解析成两个 -->