Javascript Chinese string processing additional considerations _javascript Tips

Source: Internet
Author: User
var strsex= "male";

In GB2312 encoding, suppose that another variable straxsex is a BSTR value that is read from an ActiveX control, and that the original value is "male", compared to the JavaScript program: Strsex==straxsex is False, which is "male"!= "male "。

However, if the expression Strsex==straxsex is true from VS2005 debugging, a closer look at Strsex.charcodeat (0) and straxsex.charcodeat (0) is also equal, and strsex.charcodeat ( 0) and Straxsex.charcodeat (0) are also equal to Nan.

Again notice VS2005 variable value hint, you can see strsex= "-". The character constants is not Unicode, causing the strsex to be assigned a different value than the "male" Unicode value. Try to save the JS file as a coded utf-8, run again, finally strsex==straxsex to True, the program runs in line with the debugger, and the day-to-day logic is consistent.
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.