javascript插件


1、WdatePicker.js时间插件


2、jquery.noty.js消息提示插件

    http://ned.im/noty/


3、Persist.js基于swf的客服端存储。

    javascript本地存储方案有Flash SharedObject、Google Gears、Cookie、DOM Storage、User Data、window.name、Silverlight、Open Database

    ---http://www.css88.com/archives/3717


正常:

function getActiveNo(){debugger

var index = -1;

$("#contents li").each(function(){

  if($(this).hasClass("active")){

  index= $(this).attr("index");

  }

  });

return index;

}

非正常

function getActiveNo(){debugger

$("#contents li").each(function(){

  if($(this).hasClass("active")){

  return $(this).attr("index");

  }

  });

return -1;

}


你可能感兴趣的:(javascript插件)