大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
目前只想到这样的方法:
清涧网站建设公司成都创新互联,清涧网站设计制作,有大型网站制作公司丰富经验。已为清涧千余家提供企业网站建设服务。企业网站搭建\外贸营销网站建设要多少钱,请找那个售后服务好的清涧做网站的公司定做!
script type="text/javascript"
window.status="new status";//设置状态栏
document.title="new Title";//设置标题
$(function() {
$(document).bind("click",function(e) {
if(e.target.nodeName=="HTML"){
$("#dv1").text("title: "+$(this).attr("title"));//获取窗口的标题
$("#dv2").text("status: "+window.status);//获取窗口的状态栏信息(IE8中无效)
}
});
});
/script
$(function(){
var url = window.location.href;
if(url.indexOf('index.html') -1){
$("#区域的id div").addClass('123');
}else if(url.indexOf('index_(*).html') -1){
$("#区域的id div").addClass('12none');
}
});
这段代码会将指定id的元素下所有的div加上相应的class
index_(*)那个*号是就是*号还是任意值的意思?
如果div要加判断的话再追问
话说,你的代码有点小别扭
$(function(){
$('input[type=checkbox]').each(function(checkbox,index){
var c=101*index+405;
$(checkbox).click(function(){
$('.compare_tip').css('display','block').attr('style','display: block; position: absolute; top:'+c+'px; left: 125px;');
$(this).parent().parent().css('background','gray');
})
})
})
html部分 this is the page一 this is the page二 this is the page三 this is the page四 css部分 *{ padding: 0; margin: 0; } html,body{ height: 一00%; } #container { width: 一00%; height: 500px; overflow: hidden; } .sections,.section { height:一00%; } #container,.sections { position: relative; } .section { background-color: #000; background-size: cover; background-position: 50% 50%; text-align: center; color: white; } #section0 { background-image: url('images/一.jpg'); } #section一 { background-image: url('images/二.jpg'); } #section二 { background-image: url('images/三.jpg'); } #section三 { background-image: url('images/四.jpg'); } .pages li{list-style-type:none;width:一0px;height:一0px;border-radius:一0px;background-color:white}.pages li:hover{box-shadow:0 0 5px 二px white}.pages li.active{background-color:orange;box-shadow:0 0 5px 二px orange}.pages{position:absolute;z-index:999}.pages.horizontal{left:50%;transform:translateX(-50%);bottom:5px}.pages.horizontal li{display:inline-block;margin-right:一0px}.pages.horizontal li:last-child{margin-right:0}.pages.vertical{right:5px;top:50%;transform:translateY(-50%)}.pages.vertical li{margin-bottom:一0px}.pages.vertical li:last-child{margin-bottom:0} JS部分 jquery-一.一一.0.min.js" type="text/javascript" //引入pageSwitch.min.js 如
1、$(document).ready(function(){
});
2、$("#id").val()
3、$("#id").click(function(){})
4、$().show();hide();
5、$.getJSON(RUL,{},function(data));
$(".index-car-navbar li").mouseenter(function(){//给所有类名为index-car-navbar下的li标签绑定鼠标移上事件
$("#index-navslip").stop().animate({left:parseInt($(this).position().left)+'px',},300); //将id为index-navslip的标签移动到和当前鼠标移上的li的位置
$(this).addClass("index-car-current");//给当前的li添加一个 index-car-current类名
$(".index-car-navbar li").not(this).removeClass("index-car-current"); //移除 类名为index-car-navbar下所有li标签的ndex-car-current类名
var list_order=$('.index-car-order').index(this); //找到响应的 index-car-order
$(".index-car-list").hide().eq(list_order).show();
}
);