zoukankan      html  css  js  c++  java
  • 汉字转化编码为utf8,查询

    推荐一个汉字编码转化的站点。http://bm.kdd.cc/index.asp

    汉字转化编码为utf-8 :google用的是utf-8;baidu用的是gb2312

    因为js上如果不用vb script 很难把一个汉字转化为utf-8的。html post是需要这个编码提交的。

    ----------------------------------------------------------------------------------

    JScript typeof 和 instanceof的对比。

    typeof - 判断类型

    The typeof operator returns type information as a string. There are six possible values that typeof returns: "number," "string," "boolean," "object," "function," and "undefined."

    if( typeof(ST) == 'string' )

    ========================

    instanceof - 是否是这个实例

    The instanceof operator returns true if object is an instance of class. It returns false if object is not an instance of the specified class, or if object is null.

    function objTest(obj){
    var i, t, s = ""; // Create variables.
    t = new Array(); // Create an array.
    t["Date"] = Date; // Populate the array.
    t["Object"] = Object;
    t["Array"] = Array;
    for (i in t)
    {
    if (obj instanceof t[i]) // Check class of obj.
    {
    s += "obj is an instance of " + i + "\n";
    }
    else
    {
    s += "obj is not an instance of " + i + "\n";
    }
    }
    return(s); // Return string.
    }

    在推荐一个笑话:

    偶外甥女快两岁了,有一天她想流鼻涕,她就对我姐姐大喊:妈妈妈妈,我的鼻子要吐了~!

  • 相关阅读:
    Hashset;HashMap;ArrayList;
    排序方法(冒泡排序,直接选择排序,反转排序);
    父类引用指向子类的对象;
    SQL分支语句与循环语句
    ORCAL 数据库的约束以及SQL语言的四种类型
    Oracle基础数据类型与运算符
    集合
    数组的几种排序
    转换日期格式的工具类
    equals方法重写
  • 原文地址:https://www.cnblogs.com/backuper/p/1379494.html
Copyright © 2011-2022 走看看