03 2013 档案

摘要:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title></title><style type="text/css">#d1{background-c 阅读全文
posted @ 2013-03-31 23:11 蓬莱仙羽 阅读(161) 评论(0) 推荐(0)
摘要:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head> <title></title> <script src="Scripts/jquery-1.4.1-vsdoc.js&qu 阅读全文
posted @ 2013-03-31 10:10 蓬莱仙羽 阅读(187) 评论(0) 推荐(0)
摘要:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head> <title></title> <script type="text/javascript"> //验证按 阅读全文
posted @ 2013-03-21 20:28 蓬莱仙羽 阅读(277) 评论(0) 推荐(0)
摘要://获取单选按钮的选项值 function f1() { //radio集合 var radios = document.getElementsByName("sex"); for (var i = 0; i < radios.length; i++) { if (radios[i].checked) { alert(radios[i].value); break; } } } <input type="checkbox" id="chkAll" onclick="checkAll()"/>全选& 阅读全文
posted @ 2013-03-17 23:29 蓬莱仙羽 阅读(282) 评论(0) 推荐(0)
摘要:alert(new Date().toLocaleString()); varnum = new Number(); num =11; alert(num); var a= "a"; alert(a); var b= 'b'; alert(b); var a= "123"; if(isNaN(a)) { alert("是一个数字"); } else { alert("不是一个数字"); } alert("3+3="+eval_r(3+3)); var sum = 0; for ( 阅读全文
posted @ 2013-03-16 23:09 蓬莱仙羽 阅读(204) 评论(0) 推荐(0)
摘要:asp.net最常用的三十三种编程代码1.打开新的窗口并传送参数:传送参数:response.write("<script>window.open(’*.aspx?id="+this.DropDownList1.SelectIndex+"&id1="+...+"’)</script>")接收参数:stringa=Request.QueryString("id");stringb=Request.QueryString("id1");2.为按钮添加对话框Button 阅读全文
posted @ 2013-03-13 16:37 蓬莱仙羽 阅读(198) 评论(0) 推荐(0)
摘要:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head> <title>javascript测试</title> <script type="text/javascript&quo 阅读全文
posted @ 2013-03-04 19:31 蓬莱仙羽 阅读(182) 评论(0) 推荐(0)
摘要:Mono作为一个跨平台的.Net运行环境,它最大的优点就在于它的跨平台性,Mono 项目不仅可以运行于Windows 系统上,还可以运行于Linux,FreeBSD,Unix,Mac OS X 和Solaris等操作系统上。Mono支持的语言,有javascript,C#和一个不怎么为人所知的脚本语言,绝大多数都是使用C#开发,这也给我们学C#的人一个不错的发展平台。经过几天的摸索,突然对Unity3D感兴趣,之前一直好奇,像网游,比如魔兽,红警那些具有很强立体感的游戏,是用什么技术开发的,现在了解到原来是Unity3D技术,它不仅仅能够开发网络游戏,还可以开发编译成各个移动终端平台上的游戏. 阅读全文
posted @ 2013-03-03 23:43 蓬莱仙羽 阅读(160) 评论(0) 推荐(0)
摘要:using System;using System.Collections.Generic;using System.IO;using System.Net;using System.Text.RegularExpressions;namespace ConsoleApplication1{ class Program { static void Main(string[] args) { //需要解析的集合 List<string> list = new List<string>(); //已经解析的集合 List<string> listCount = 阅读全文
posted @ 2013-03-02 00:38 蓬莱仙羽 阅读(207) 评论(0) 推荐(0)