我修改了一个jquery框:
http://designer-depot.com/manset/test.html
在<ol></ol>
中,一切都很完美。但我希望鼠标悬停<h2>
以及标题1,2,3更改的抽象新闻。
我怎样才能做到这一点。
提前致谢
答案 0 :(得分:0)
您需要更改事件处理程序中的文本,例如:
$(document).ready(function() {
$("#headlines ol li").mouseover(function(){
$("#headlines ol li").removeClass("current");
$(this).toggleClass("current");
$("h2", this).text("Whatever you want it to say");
});
});
您还应该使用if()
查看悬停的链接,然后根据链接更改文本。您可以使用相同的原则来更改说明。