鼠标经过一段文字该文字改变颜色该使用jquery事件的什么方法?代码该怎么写?求大神帮忙
1个回答
2015-06-23
展开全部
css:
.font-red{color:red}
html:
<p id="word">something</p>
js:
$("#word").hover(
function(){
$(this).addClass("font-red");
},
function(){
$(this).removeClass("font-red");
}
);
.font-red{color:red}
html:
<p id="word">something</p>
js:
$("#word").hover(
function(){
$(this).addClass("font-red");
},
function(){
$(this).removeClass("font-red");
}
);
追问
改变图片大小呢?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询