-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSamplePage.html
More file actions
43 lines (33 loc) · 807 Bytes
/
SamplePage.html
File metadata and controls
43 lines (33 loc) · 807 Bytes
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
<html>
<head>
<title>Sample Page</title>
<script type="text/javascript">
function sayHi()
{
//alert(document.URL);
alert(document.images[0].src);
//lert(document.links.length);
}
</script>
<noscript>
你浏览器不支持或已禁用JavaScript。
</noscript>
</head>
<!--
<embed src="chapter5.svg" width=300 heigth=200 type="image/svg+xml"/>
<object data="chapter5.svg" width="300" height="100" type="image/svg+xml" />
<iframe src="chapter5.svg" width="300" height="100"></iframe>-->
<script type="text/javascript" src="Chapter5.js"></script>
<boby>
<!--
<i>hi</i>
<img src="http://www.w3school.com.cn/i/eg_smile.gif" >
<img border="0" src="/i/eg_smile.gif" />
<br />
<link href="http://daige.me" >daige.me</link>
<script type="text/javascript">
//sayHi();
</script>
-->
</boby>
</html>