1个回答
展开全部
举个例子吧
<html>
<head>
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<style>
.c{color:red;}
</style>
<script>
$(document).ready(function(){
$("#t1").mouseenter(function(){
$("#t1").addClass("c");
})
.mouseout(function(){
$("#t1").removeClass("c");
})
})
</script>
</head>
<body>
<span id="t1" >aaa</span>
</body>
</html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<style>
.c{color:red;}
</style>
<script>
$(document).ready(function(){
$("#t1").mouseenter(function(){
$("#t1").addClass("c");
})
.mouseout(function(){
$("#t1").removeClass("c");
})
})
</script>
</head>
<body>
<span id="t1" >aaa</span>
</body>
</html>
来自:求助得到的回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询