document.writeln绑定数据 --点击跳转添加样式
document.writeln("
document.writeln("
document.writeln("
document.writeln(" ");
document.writeln(" <p class='icon icon1'>
");
document.writeln("
订单
");
document.writeln("
document.writeln(" ");
document.writeln(" <p class='icon icon2'>
");
document.writeln("
售后
");
document.writeln("
document.writeln(" ");
document.writeln(" <p class='icon icon3'>
");
document.writeln("
收支
");
document.writeln("
document.writeln(" ");
document.writeln(" <p class='icon icon4'>
");
document.writeln("
商品
");
document.writeln("
document.writeln(" ");
document.writeln(" <p class='icon icon5'>
");
document.writeln("
我
");
document.writeln("
document.writeln("
");
document.writeln("
");
document.writeln("
");
document.writeln(" ");
$(function () {
// var storage=window.localStorage;
getItem();
function getItem(){
var temp = localStorage.getItem('temp');
if(temp != null){
if(temp == 1){
$(".footer a[href ='order.html']").addClass('active').siblings().removeClass('active');
}else if(temp == 2){
$(".footer a[href ='saleAfterSelf.html']").addClass('active').siblings().removeClass('active');
}else if(temp == 3){
$(".footer a[href ='income.html']").addClass('active').siblings().removeClass('active');
}else if(temp ==4){
$(".footer a[href ='goods.html']").addClass('active').siblings().removeClass('active');
}else if(temp ==5){
$(".footer a[href ='my.html']").addClass('active').siblings().removeClass('active');
}
}
};
$(".footer a").click(function(){
//alert(1111);
var href= $(this).attr('href');
if (href == 'order.html'){
localStorage.setItem('temp',1);
}else if(href == 'saleAfterSelf.html' || href == 'returnsAfterSelf.html' || href == 'saleAfterOffter.html' || href =='returnsAfterOffter.html' || href == 'saleAfterSupply.html' || href=='returnsAfterSupply.html' || href=='saleAfterExperience.html' || href=='returnsAfterExperience.html'){
localStorage.setItem('temp',2);
}else if(href == 'income.html'){
localStorage.setItem('temp',3);
}else if(href == 'goods.html'){
localStorage.setItem('temp',4);
}else if(href == 'my.html'){
localStorage.setItem('temp',5);
}
//$(this).attr("color","red");
$(this).addClass('active').siblings().removeClass();
});
});
document.writeln绑定数据 --点击跳转添加样式的更多相关文章
- 后台给GridView绑定数据时给每一行添加一个JS方法
--------JS function ReturnDictionaryValues(srcElement) { top.document.getElementById("_DialogFr ...
- vue点击tab跳转页面,给点击的tab添加样式,且解决刷新以后点击的tab样式消失问题
<ul class="nij"> <li v-for="item in nav" @click="selectNav(item.ti ...
- 怎样在点击li时添加样式,移除兄弟样式
<style type="text/css"> .add{ color:#ff0} </style> <div> <ul> < ...
- js模拟form表单提交数据, js模拟a标签点击跳转,避开使用window.open引起来的浏览器阻止问题
js模拟form表单提交数据, js模拟a标签点击跳转,避开使用window.open引起来的浏览器阻止问题 js模拟form表单提交数据源码: /** * js模拟form表单提交 * @param ...
- 如何绑定android点击事件--跳转到另一个页面并实现关闭功能?
一.点击按钮跳转到另一个页面. eg:实现从一个页面点击跳转到另一个页面 1.首先在一个布局文件(.XML)中绘画了一个跳转按钮(id为btn1): <Button androi ...
- jquery配合.NET实现点击指定绑定数据并且能够一键下载
最近在做培训管理系统中遇到一个问题,需求需点击绑定的数据,将指定的附件下载下来,并且是批量下载(绑定的数据非datagrid,后台拼接的绑定). 效果图如下: 大体思路: 1.jquery得到选中的绑 ...
- WPF ListView点击删除某一行并获取绑定数据
最近在开发WPF程序时遇到一个问题,在gridview中希望实现在每一行最后添加一个删除的按钮,但是发现点击每行的button时只会触发button的点击事件,并没有选中这一行,此时调用list.Se ...
- xamarin.android listview绑定数据及点击事件
前言 listview是用来显示数据列表的一个控件,今天给大家带来如何使用cursor进行数据绑定以及点击事件. 导读 1.如何创建一个listview 2.如何使用cursor进行绑定数据 3.li ...
- Html5+Mui前端框架,开发记录(四):下拉菜单绑定数据、搜索、时间控件
1.下拉菜单绑定数据,选择后回传值 1)html: <div class="mui-input-row"> <label>xxx:</label> ...
随机推荐
- 旗舰版win7系统中GraphEdit执行Loading a Graph From an External Process失败对策
操作系统:旗舰版win7 DirectShow SDK: 9.0 IDE环境:VS2008 以下代码参考MSDN: HRESULT AddToRot(IUnknown *pUnkGraph, DWOR ...
- Centos磁盘空间不足,找不到占用文件
服务器报警,系统"/"空间不足,但找不到哪些文件占用. 1.使用du -sh *,层层目录查看依然找不到 2.使用"lsof / | grep -i delete&quo ...
- 【C++】A trick I learned:put boilerplate code into constructor of a struct
I learned this trick from hitonanode's submission on AtCoder. The trick is like struct fast_ios { fa ...
- CSP-S 2019 杂记
CSP-S 2019 游记 update 2019.11.18 考完后的第一感受 update 2019.11.24 我校某优秀学子把全SD的选手程序全测了一遍(太狠了,于是就知道了大概的惨淡成绩,大 ...
- 坦克大战--Java类型 ---- (1)音乐播放
实现原理 我用接口java.applet.AudioClip实现音乐播放,那么我们需要了解这个接口的情况. 我们主要使用其中的三个方法: (1)void loop(); //循环播放(2)void p ...
- JDK SPI
最近学习了JDK SPI JDK SPI是什么 最近工作中听几个同事说了好几次SPI这个名词,虽然和我没关系,但是心里默默想还是学习一下,不然下次和我说到SPI,连是什么都不知道那就尴尬了. 所以 ...
- server001
- spring boot jpa @PreUpdate结合@DynamicUpdate使用的局限性
通常给实体添加audit审计字段是一种常用的重构方法,如下: @Embeddable @Setter @Getter @ToString public class Audit { /** * 操作人 ...
- 转:spring中InitailizingBean接口的简单理解
转自:https://www.cnblogs.com/wxgblogs/p/6849782.html spring中InitializingBean接口使用理解 InitializingBean接 ...
- 前端框架:Angular React 和 Vue的比较
前端这几年的技术发展很快,细分下来,主要可以分成四个方面: 1.开发语言技术,主要是ES6&7,coffeescript,typescript等: 2.开发框架,如Angular,React, ...