Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个搜索表单,其中仅包含一个带有提交按钮的文本字段。
如果用户使用任何文本进行搜索,那么我们会根据搜索字符串将结果发送到浏览器。
如果搜索字符串包含 % 符号,那么我的请求状态错误(400),
我该如何解决这个问题?
注意:我使用的是 Yii 框架提供的路径类型 URL
我会建议你使用encodeURI
encodeURI
var value=$("#searchbar").val(); var senddata=encodeURI("main.php?value="+value); $.get(senddata,function(){ //write some code })