01.
<!doctype html>
02.
<html>
03.
<head>
04.
<meta charset=
"utf-8"
>
05.
<title>Untitled Document</title>
07.
<script language=
"JavaScript"
>
08.
$(document).ready(
function
(){
09.
alert(
"ShowListComponentProblem "
);
10.
$(
"#btnlot"
).click(
function
(){
11.
12.
alert(
"ShowListComponentProblem 2"
);
13.
14.
alert(
"ShowListComponentProblem1 "
);
15.
});
16.
});
17.
</script>
18.
</head>
19.
<body>
20.
<td width=
"83"
><input type=
"submit"
name=
"btnlot"
id=
"btnlot"
value=
"Submit"
></td>
21.
</body>
22.
</html>