上一页 1 ··· 9 10 11 12 13
摘要: document.ready和onload的区别——JavaScript文档加载完成事件 页面加载完成有两种事件 一是ready,表示文档结构已经加载完成(不包含图片等非文字媒体文件) 二是onload,指示页面包含图片等文件在内的所有元素都加载完成。 用jQ的人很多人都是这么开始写脚本的: $(f 阅读全文
posted @ 2016-11-16 20:29 *小嘻嘻* 阅读(1415) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #define MaxSize 100 //串中最多字符个数 3 typedef struct 4 { 5 char data[MaxSize];//存放串字符 6 int length; //存放串的实际长度 7 }SqString;//顺序串类型 8 9 void Assign(SqString *s,char str[])//... 阅读全文
posted @ 2016-11-10 09:31 *小嘻嘻* 阅读(635) 评论(0) 推荐(0) 编辑
摘要: 单击读取文件按钮的运行的结果 阅读全文
posted @ 2016-11-09 22:35 *小嘻嘻* 阅读(731) 评论(0) 推荐(0) 编辑
摘要: 1 package textopen; 2 3 import java.io.File; 4 import java.io.FileNotFoundException; 5 import java.io.FileOutputStream; 6 import java.io.IOException; 7 8 public class opentext3 { 9 private... 阅读全文
posted @ 2016-11-09 19:15 *小嘻嘻* 阅读(1761) 评论(0) 推荐(0) 编辑
摘要: 今天是2016年11月9日,这是我人生中第一次写博客。从此开启了我的职业生涯。 我相信努力的人都是很幸运的!宝剑锋从磨砺出,梅花香自苦寒来!加油! 阅读全文
posted @ 2016-11-09 16:51 *小嘻嘻* 阅读(295) 评论(1) 推荐(2) 编辑
上一页 1 ··· 9 10 11 12 13