<html>
<head>
<title>测试JQuery</title>
<meta charset = "utf-8"/>
<style>
.class_1{
background-color: red;
}
</style>
<script type = "text/javascript" src = "../JQuery/jquery.js"></script>
<script language = "javascript">
$(document).ready(function(){
window.alert("Hello JQuery!");
});
//这里触发事件后不能输出您好
$('#test').click(function(){
window.alert('您好');
});
</script>
</head>
<body>
<input class = "class_1" type = "button" id="test" value = "点击测试"/>
</body>
</html>
FFIVE
收到一只叮咚
相关分类