-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhw6.html
More file actions
28 lines (28 loc) · 1.08 KB
/
hw6.html
File metadata and controls
28 lines (28 loc) · 1.08 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>web技术概论-y2017g45</title>
</head>
<body>
<h1>Homework 6</h1>
<hr>
<h4>Q0</h4>
<h5>Question description:</h5>
<p>1.What are JavaScript browser sniffers?</p>
<p>2.Why are they so commonly used in javascript?</p>
<br>
<h5>Answers:</h5>
<p>1.Javascript Browser Sniffer is a browser identifier written in JavaScript. It will tell which browser, version and operating system
the visitor(or user) are using.</p>
<p>2.It is because identifying the browser and its version is of great importance in web development. Different browsers may lead to various
JavaScript programs to implement the same function, so knowing nothing about the browser and its version is dangerous while developing in JavaScript</p>
<h4>Q1</h4>
<p>The following are links as required</p>
<p><a href="hiThere.html">hiThere.html</a></p>
<p><a href="function.html">function.html</a></p>
<p><a href="objects.html">objects.html</a></p>
<p><a href="popups.html">popups.html</a></p>
<p><a href="wizardForm.html">wizardForm.html</a></p>
</body>
</html>