-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSample-3.html
58 lines (58 loc) · 1.56 KB
/
Sample-3.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
48
49
50
51
52
53
54
55
56
57
58
<html>
<head>
<title>Sample-3</title>
<script src = "http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type = "text/javascript">
</script>
<script type = "text/javascript" >
$(function() {
console.log($('table#languages td:first-child'));
console.log($('table#languages td:nth-child(2n)'))
console.log($('table#languages td:nth-child(2n + 1)'))
console.log($('table tr:parent'))
console.log($('table tr:hidden'))
console.log( $('td').filter(function(){return this.innerHTML.match(/^\d+$/)}));
console.log($('*').slice(2))
console.log($('table').find('th'))
//console.log($('table').contains('td'))
console.log($('*').is('table'))
console.log($('table').clone().appendTo('#d').end().addClass('beenCloned'));
console.log($('*').andSelf())
});
</script>
</head>
<body>
<table id="languages">
<thead>
<tr>
<th>Language</th>
<th>Type</th>
<th>Invented</th>
</tr>
</thead>
<tbody>
<tr>
<td>Java</td>
<td>Static</td>
<td>1995</td>
<td>wanted</td>
</tr>
<tr>
<td>Ruby</td>
<td>Dynamic</td>
<td>1993</td>
</tr>
<tr>
<td>Smalltalk</td
<td>Dynamic</td>
<td>1972</td>
</tr>
<tr>
<td>C++</td>
<td>Static</td>
<td>1983</td>
</tr>
</tbody>
</table>
<div id = "d"></div>
</body>
</html>