欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

用 jquery 加了点 js 效果

程序员文章站 2022-07-16 08:46:25
...
代码超简单:

$(function(){
$(".box h2").css('cursor', 'pointer');
$(".box h2").click(
function(e){
$(this).next().toggle();
}
).click();
$(".post-title").css('cursor', 'pointer');
$(".post-title").click(
function(e){
$(this).next().next().toggle();
}
).click();
$('#readerpublishermodule0 h3').css('cursor', 'pointer');
$('#readerpublishermodule0 h3').click(
function(e){
$(this).next().toggle();
}
).click();
})
相关标签: jQuery CSS