-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_selector.html
47 lines (43 loc) · 1.28 KB
/
test_selector.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled Document</title>
</head>
<body id="a">
<div id="b">
<textarea cols="10" rows="10" class="cls">
aadfafafadfasfadfbadfaf
</textarea>
<input type="radio" name="c" a="a" />
<input type="radio" name="c" a="b" />
</div>
<div class="cls">
<input type="checkbox" id="checkbox"/>
</div>
</body>
<script type="text/javascript" src="mallan.selector.js">
</script>
<script type="text/javascript" src="mallan.selector_v2.js">
</script>
<script type="text/javascript" src="http://static1.pplive.cn/test/build/v_20333/pack_min.js">
</script>
<script type="text/javascript">
var s = "#a div input:odd";
// console.profile();
// var a = _$(s);
//console.log(a)
// console.profileEnd();
// console.log(a)
// console.profile();
var b = __$(s);
//console.log(a)
// console.profileEnd();
console.log(b)
//jui
// console.profile();
var c = $(s);
// console.profileEnd();
//console.log(c);
</script>
</html>