Home php教程 php手册 解决ajax获取页面直接显示乱码的方法

解决ajax获取页面直接显示乱码的方法

Jun 21, 2016 am 08:50 AM
data gb quot

大家都知道,xmlhttp在通信时采用的是utf编码,而国内很多网页的信息都是采用gbk编码,所以当直接通过ajax去连接网页,并将获取到的信息直接显示的话就会出现乱码的现象,有些时候无法改变服务器端网页的编码(例如获取别的网站的天气预报信息),在这种时候就只能在客户端通过js做编码的工作了.

下面这段js就是用于将服务器端返回的gbk编码字符串转换为utf编码字符串:


function gb2utf8(data){
  var glbEncode = [];
  gb2utf8_data = data;
  execScript("gb2utf8_data = MidB(gb2utf8_data, 1)", "VBScript");
  var t=escape(gb2utf8_data).replace(/%u/g,"").replace(/(.{2})(.{2})/g,"%$2%$1").replace(/%([A-Z].)%(.{2})/g,"@$1$2");
  t=t.split("@");
  var i=0,j=t.length,k;
  while(++i     k=t[i].substring(0,4);
    if(!glbEncode[k]) {
      gb2utf8_char = eval("0x"+k);
      execScript("gb2utf8_char = Chr(gb2utf8_char)", "VBScript");
      glbEncode[k]=escape(gb2utf8_char).substring(1,6);
    }
    t[i]=glbEncode[k]+t[i].substring(4);
  }
  gb2utf8_data = gb2utf8_char = null;
  return unescape(t.join("%")); }

 


有了这段代码后,就可以直接对返回的网页内容进行编码了:
var response=gb2utf8(response.responseBody);


经过这样的转码后所获得的页面内容就不会有乱码现象了;
当然,如果服务器端页面采用的是utf-8的编码那就根本不需要进行编码工作了。



Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How many GB is 1t of memory equal to? How many GB is 1t of memory equal to? Feb 22, 2023 pm 04:55 PM

1t memory is equal to 1024GB. 1t memory refers to the memory storage capacity of "1TB", and 1TB is equal to 1024GB. But this is only a theoretical value based on computer principles. Generally, the available storage space displayed by the system will be less; because the hard drive manufacturer's definition of the hard drive is different from the computer's algorithm for the hard drive capacity, resulting in the hard drive identification capacity and the operating system display. Actual capacity may vary.

How many MB is 1g of memory? How many MB is 1g of memory? Mar 16, 2023 pm 04:19 PM

1g memory is 1024MB. g stands for "GB", which means "gigabyte" in Chinese, and MB refers to "megabyte"; GB and MB are both commonly used to indicate the storage capacity of computer hard drives, memories and other storage media with larger capacities. The conversion rate between GB and MB is approximately equal to 1000 (1024), that is, "1GB=1024MB".

1g equals how many MB of memory capacity 1g equals how many MB of memory capacity Feb 03, 2023 pm 03:55 PM

1g is equal to 1024MB memory capacity. The full name of g is "GB", which means "gigabyte" in Chinese. It is a decimal unit of information measurement and is often used to indicate the storage capacity of computer hard drives, memories and other large-capacity storage media. The conversion rate between GB and MB is approximately equal to 1000 (1024), that is, "1GB = 1024MB".

Is 1 megabit 1G? Is 1 megabit 1G? Feb 27, 2023 pm 03:43 PM

1 trillion is not 1G. 1 megabyte is 1MB, and 1G is equal to 1024MB. The full name of MB is "MByte", which refers to the number of bytes. It is a storage unit in computers and is pronounced as "mega"; while GB is a decimal unit of information measurement, 1GB=1024MB, 1GB=1048576KB, 1GB=1073741824B.

What is the storage capacity of a 10GB hard drive? What is the storage capacity of a 10GB hard drive? Mar 08, 2023 am 10:35 AM

A 10GB hard drive represents a storage capacity of "10 billion bytes." Byte is a unit of measurement used by computer information technology to measure storage capacity, usually abbreviated as "B"; gb, also called gigabyte, is a decimal unit of information measurement. Hard drive manufacturers usually calculate in decimal places: 1KB=1000B, 1MB=1000KB, 1GB=1000MB; therefore, if you convert "1GB=1000MB=1000*1000KB=1000*1000*1000B", it is 10 billion bytes.

php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决 php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决 Jun 13, 2016 am 10:23 AM

php提交表单通过后,弹出的对话框怎样在当前页弹出php提交表单通过后,弹出的对话框怎样在当前页弹出而不是在空白页弹出?想实现这样的效果:而不是空白页弹出:------解决方案--------------------如果你的验证用PHP在后端,那么就用Ajax;仅供参考:HTML code

What data is in the data folder? What data is in the data folder? May 05, 2023 pm 04:30 PM

The data folder contains system and program data, such as software settings and installation packages. Each folder in the Data folder represents a different type of data storage folder, regardless of whether the Data file refers to the file name Data or the extension. Named data, they are all data files customized by the system or program. Data is a backup file for data storage. Generally, it can be opened with meidaplayer, notepad or word.

How many bytes does a 20 GB hard drive have? How many bytes does a 20 GB hard drive have? Feb 28, 2023 am 11:59 AM

A 20GB hard drive represents a capacity of approximately 20 billion bytes. GB, also called gigabyte, is a decimal unit of information measurement; byte is a unit of measurement used in computer information technology to measure storage capacity, and can be abbreviated as "B". The conversion relationship between gb and bytes: 1gb is equal to 1024MB, 1MB is equal to 1024KB, and 1KB is equal to 1024B; therefore 20GB=20*1024MB=20*1024*1024KB=20*1024*1024*1024B=21474836480B.

See all articles