域名已变更 请手动修改文章中域名指向carlzeng.com

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

在推荐一个笑话:

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

posted @   CarlZeng  阅读(1691)  评论(0编辑  收藏  举报
编辑推荐:
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
阅读排行:
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 按钮权限的设计及实现
· 25岁的心里话
域名已变更 请手动修改文章中域名指向carlzeng.com
点击右上角即可分享
微信分享提示