ぷ行走de猫げ

在快乐中成长,在快乐中学习!

摘要: // JavaScript Document//register.js//registera$.extend({ doUpdate:function(num) { var sec = 60; if(num == sec) { alert('验证码过期,请重新获取!'); $('#timer').text(''); $('#sendSMS').show(); } else { var wut = sec - num; $('#timer').text("如果您在(" + wut + ") 阅读全文
posted @ 2012-04-21 21:51 李天翔 阅读(288) 评论(0) 推荐(0) 编辑
摘要: <head> <title></title> <script src="Scripts/jquery-1.4.1.min.js" type="text/javascript"></script> <style type="text/css"> BODY { font: 12px/20px Arial, Helvetica, "宋体" , sans-serif; color: #000; } .full_percent .btnMin SPAN 阅读全文
posted @ 2012-04-21 21:03 李天翔 阅读(251) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// Upload 的摘要说明 /// </summary> public class Upload : IHttpHandler { public void ProcessRequest(HttpContext context) { string result = AppConst.StringNull; string _productID = context.Request.QueryString["productid"]; HttpPostedFile MyFile = context.Request.Files[ 阅读全文
posted @ 2012-04-21 16:31 李天翔 阅读(797) 评论(0) 推荐(0) 编辑
摘要: 功能介绍:在Web下输入密码时提示大写锁定键,封装成jq插件方便有需要的同学!使用:$("#txtPWD").capsLockTip();截图预览:代码(2012-01-21 16:21最后修改):1. 使用公用静态对象,使多个密码框共享状态。2. 增加focus 和 blur事件,提示更方便及时。 $.fn.extend({ capsLockTip: function (divTipID) { return this.each(function () { //创建对象实例并保存。 //获取实例对象:var api = $("#txtPWD").data 阅读全文
posted @ 2012-04-21 16:28 李天翔 阅读(561) 评论(1) 推荐(0) 编辑