Heim >Backend-Entwicklung >PHP-Tutorial >javascript - url地址中的中文转换问题

javascript - url地址中的中文转换问题

WBOY
WBOYOriginal
2016-07-06 13:52:191308Durchsuche

javascript - url地址中的中文转换问题

客户端是js发送请求
如何用js处理数据

后台用php处理数据

js我使用的是

<code>encodeURI(keyword)</code>

php
urldecode

还是不行

location.href=encodeURI("gallery.html?keyword="+this.searchword);
PHP直接 $GET['keyword']无法搜到

location.href="gallery.html?keyword="+encodeURIComponent(this.searchword);
同样不行

回复内容:

javascript - url地址中的中文转换问题

客户端是js发送请求
如何用js处理数据

后台用php处理数据

js我使用的是

<code>encodeURI(keyword)</code>

php
urldecode

还是不行

location.href=encodeURI("gallery.html?keyword="+this.searchword);
PHP直接 $GET['keyword']无法搜到

location.href="gallery.html?keyword="+encodeURIComponent(this.searchword);
同样不行

js还有一个函数encodeURIComponent,另外php接受参数不用再urldecode,直接$_GET['keyword']

很可能是编码问题,统一下编码试试

对参数进行编码应该使用encodeURIComponent,对整个uri进行编码则是用encodeURI

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn