汉字转化编码为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.
}

在推荐一个笑话:

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

原文地址:https://www.cnblogs.com/backuper/p/1379494.html