11 2011 档案

摘要:$.ajax({ type: 'Get', url: 'LoginAjax.aspx', data: 'text', success:function(result){alert(result)}, dataType: 'text' });忘了 。一定要记住!!!!! 阅读全文
posted @ 2011-11-28 20:48 lieneces 阅读(145) 评论(0) 推荐(0)
摘要:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" > <!-- 引用时保留下原创作者喽,尊重任何一位原创作者,促进中国互联网进程 Editor:weasle http://www.hxcgw.com Email:weasle@163.com QQ:112011531 --> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Con 阅读全文
posted @ 2011-11-28 11:29 lieneces 阅读(279) 评论(0) 推荐(0)
摘要:window.setInterval()功能:按照指定的周期(以毫秒计)来调用函数或计算表达式。语法:setInterval(code,millisec)解释:code:在定时时间到时要执行的JavaScript代码串。millisec:设定的定时时间,用毫秒数表示。返回值:定时器的ID值,可用于clearInterval()方法停止指定的定时器。注:setInterval()方法会不停地调用函数,直到用clearInterval()终止定时或窗口被关闭。window.clearInterval()功能:取消由setInterval()方法设置的定时器。语法:clearInterval(id_ 阅读全文
posted @ 2011-11-25 11:16 lieneces 阅读(53405) 评论(1) 推荐(3)
摘要:<metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/><scripttype="text/javascript"charset="utf-8"> alert('欢迎您!'); </script> 阅读全文
posted @ 2011-11-17 10:42 lieneces 阅读(496) 评论(0) 推荐(0)