$(function(){ $(".index_nav li a").click(function(event){ //绑定按钮的单击事件 var index = this.title; //取得点击按钮的title属性,这里就是按钮的数字 // alert(index); var id = "#" + "index_" + index; // 取得需要跳转到的div 的 id // alert(id); $("html,body&qu…
最近做项目碰到Exchange中,用EWS API方法读取的未读邮箱(ConnectingIdType.PrincipalName设置该属性的方法)附带代码部分: 核心代码 using Microsoft.Exchange.WebServices.Data; using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Security; using Sy…
var timer; $("li").on("mouseover",function(){ clearTimeout(timer); timer=null; $(this).addClass("active"); $(this).siblings().removeClass("active"); var $index=$(this).index(); /*$(".wrapper").animate({top…