复制代码 代码如下:
$(document).ready(function(){
$("#list1").css("list-style","none");
$("#list1").css("margin","0px");
$("#list1").children().css("background-image","url(l_04.gif)");
$("#list1").children().css("height","30px");
$("#list1").children().children().css("margin-left","0px");
$("#list1").children().children().css("padding-left","12px");
$("#list1").children().children().css("background-image","url(allow_01.gif)");
$("#list1").children().children().css("background-repeat","no-repeat");
$("#list1").children().children().css("background-position","leftcenter");
$("#list1").children().children().mouseover(function(){
$(this).css("background-image","url(allow_02.gif)");
$(this).css("margin-left","6px");
});
$("#list1").children().children().mouseout(function(){
$(this).css("background-image","url(allow_01.gif)");
$(this).css("margin-left","0px");
});
}
);