摘要: 确认(confirm 消息对话框) 提问(prompt 消息对话框)prompt弹出消息对话框,通常用于询问一些需要与用户交互的信息。弹出消息对话框(包含一个确定按钮、取消按钮与一个文本输入框)。 打开新窗口(window.open)open() 方法可以查找一个已经存在或者新建的浏览器窗口。语... 阅读全文
posted @ 2015-10-02 12:14 尘梦 阅读(166) 评论(0) 推荐(0) 编辑
摘要: namespace Home\Controller;use Home\Controller;class CategoryController extends Controller{ //无限分类读取导航 protected function getCategory() { ... 阅读全文
posted @ 2015-09-29 15:23 尘梦 阅读(539) 评论(0) 推荐(0) 编辑
摘要: ThinkPHP3.2验证码操作在当前的控制器内我这里是登录后台控制器class LoginController extends Controller { public function index(){ $this->display('login'); } /*... 阅读全文
posted @ 2015-09-23 15:51 尘梦 阅读(170) 评论(0) 推荐(0) 编辑
摘要: //Console.ReadKey(); ceshi("3.ini", "用户名"); ceshi("3.ini", "IP地址"); ceshi("3.ini", "端口"); // 从ini格式的文件(每... 阅读全文
posted @ 2015-09-22 19:37 尘梦 阅读(134) 评论(0) 推荐(0) 编辑
摘要: string[] lines = System.IO.File.ReadAllLines(@"C:\Users\Administrator\Desktop\2.txt",Encoding.Default); foreach (string i in... 阅读全文
posted @ 2015-09-22 11:32 尘梦 阅读(1909) 评论(0) 推荐(0) 编辑
摘要: string email = Console.ReadLine(); int atIndex = email.IndexOf('@'); string userName = email.Substring(0, atIndex); ... 阅读全文
posted @ 2015-09-22 10:59 尘梦 阅读(165) 评论(0) 推荐(0) 编辑
摘要: string[] arr = Console.ReadLine().Split(' '); string result = string.Empty; for (int i = arr.Count() - 1; i >= 0; i--) ... 阅读全文
posted @ 2015-09-22 10:55 尘梦 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 运算类 public class yunsuan { public static operation create(string operate) { operation oper = null; switch (operate) { ... 阅读全文
posted @ 2015-09-21 09:02 尘梦 阅读(197) 评论(0) 推荐(0) 编辑
摘要: public class Program { static void Main(string[] args) { Console.WriteLine("请输入语文成绩和数学成绩"); string x = Console... 阅读全文
posted @ 2015-09-15 09:25 尘梦 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 验证码刷新<?php$img=imagecreate(50, 20); //创建画布$color=imagecolorallocate($img, 0, 0, 0); //创建背景颜色$font=imagecolorallocate($img, 255, 255, 255);//创建文本颜色$po... 阅读全文
posted @ 2015-09-12 21:58 尘梦 阅读(155) 评论(0) 推荐(0) 编辑