jquery简单例子
<html>
<head>
<title>jquery简单例子 yanleigis Email:landgis@126.com </title>
<script type="text/javascript" src="jquery.js" ></script>
<SCRIPT LANGUAGE="JavaScript">
$(document).ready(function() {
$("#cylok").click(function() { //只能使用id,前加# yanleigis Email:landgis@126.com
alert("Hello world cylok!");
});
$("#ylok").click(function() {
alert("Hello world ylok!");
});
$("a").click(function() {
alert("Hello world!");
});
$("#add6").click(function(){
alert("Hello world add!");
});
$("#yltxt").bind("change",function(){
alert("Hello world change!");
});
});
</SCRIPT>
</head>
<body>
<p>
<input type="button" id="ylok" value="yanleigis">
<input type="checkbox" id="cylok" value="landgis@126.com">
<button id="add6">landgis@126.com</button>
<a href="" >Link</a> </p>
<p>
<input type="text" id="yltxt">
</p>
</body>
</html>