汉字转化编码为utf-8,查询

推荐一个汉字编码转化的站点。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/archive/2009/01/21/1379494.html

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值