<html>
<head>
<title> Using the search property of the Location object</title>
</head>
<body>
<script language="JavaScript">
<!--
function show(){
alert(document.location.search);
}
-->
</script>
<form name="form1">
Click the button to get the current location.search
value of the following address:
<br>
http://www.java2java.com
<br><br>
<input type="button" name="getsearch" value="Get search" onClick='show()'>
<br>
</form>
</body>
</html>
|