详解jquery选择器的原理
需积分: 0 2 浏览量
更新于2020-12-29
收藏 32KB PDF 举报
详解jquery选择器的原理
html部分
<!doctype html>
<html lang=en>
<head>
<meta charset=UTF-8 />
<title>Document</title>
[removed][removed]
</head>
<body>
<div class=one>1</div>
<div class=two>2</div>
</body>
[removed]
var result = $(div);
console.log(result);
aler