假设我有一个接受 Unicode 字符串作为参数的 JavaScript 函数:
function eleFunc(str){
...
}
如何在函数内部以编程方式确定它是使用包含 Unicode 转义序列的字符串还是实际字符调用的?如,它是否被称为:
eleFunc("\u306E"); //the Unicode escape for "の"
或者
eleFunc("の"); // the character itself
假设我有一个接受 Unicode 字符串作为参数的 JavaScript 函数:
function eleFunc(str){
...
}
如何在函数内部以编程方式确定它是使用包含 Unicode 转义序列的字符串还是实际字符调用的?如,它是否被称为:
eleFunc("\u306E"); //the Unicode escape for "の"
或者
eleFunc("の"); // the character itself