`
wolfmaster
  • 浏览: 154894 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论
文章列表

FomatJs

    博客分类:
  • js
<html> <head> <title>JSer </title> <meta http-equiv="content-type" content="text/html; charset=gb2312" /> <style> /* Global CSS */ * { padding:0px; margin:0px; font-size:13px; font-family: arial 宋体; } body { overflow:auto; border:0px none black; ...

AutoComplete

    博客分类:
  • js
参考这个页面 <!DOCTYPE   HTML   PUBLIC   "-//W3C//DTD   HTML   4.0   Transitional//EN "> <HTML> <HEAD> <META   http-equiv=Content-Type   content= "text/html;   charset=gb2312 "> <META   content= "MSHTML   6.00.6000.16441 "   name=GENERATOR> </H ...

js隐藏列

    博客分类:
  • js
<!DOCTYPE   HTML   PUBLIC   "-//W3C//DTD   HTML   4.0   Transitional//EN" > <HTML > <HEAD > <TITLE >New   Document</TITLE > <script   language="javascript" > function   filterOnclick() { if(filter.value =="filter") { filter.va ...
一、冒泡排序(Bubble) using System; namespace BubbleSorter { public class BubbleSorter {   public void Sort(int[] list)   {    int i,j,temp;    bool done=false;    j=1;    while((j<list.Length)&&(!done))    {     done=true;     for(i=0;i<list.Length-j;i++)     {      if(list[i]>list[i+ ...
collection非常灵活,内含很多方便的类 如往hashTable里存数据 例子:    Hashtable ht = new Hashtable();             ht.Add("白","1Val");             ht.Add("晓", "2Val");             ht.Add("哲", "3Val");             foreach(DictionaryEntry entry in ht)             { ...
一、C#中的全局变量 C#中没有了像VB.Net中的全局变量,那么我们如何实现在不同的页面间传递参数呢? 下面举例说明如何实现这一功能. 1.新建一个项目. 2.在该工程中添加一个窗体Form1. 3.在该窗体中定义静态型字符串变量myTestStr ...

js过滤

    博客分类:
  • js
function  aa(str) {   str = "<a href=\"xxx.asp\"><div>1234567</div>飞洒地发送地<span>司法</span></a>";   str = str.replace(/<a.*?>(.*)<\/a>/ig,"$1")   alert(str.replace(/<(.*)>(.*)<\/\1>/ig,"$2")); }
Global site tag (gtag.js) - Google Analytics