日期:2014-05-16 浏览次数:20271 次
<html>
<head>
<title>测试form</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="jquery-1.7.2.min.js"></script>
</head>
<body>
<form>
<input type="text"></input>
<input type="text"></input>
<button>测试</button>
</form>
<script type="text/javascript">
$(document).ready(function(){alert('refurbish');});
</script>
</body>
</html>
<html>
<head>
<title>测试form</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){alert('refurbish');});
</script>
</head>
<body>
<form>
<input type="text"/>
<input type="text"/>
<input type="button" value="测试" />
</form>
</body>
</html>