search

废话不多说上代码:
前台:

function on_post_form(){	var f = document.post_myform;	var s_paramName = document.getElementById("select_paramName").value;        f.action = "__APP__/index/select_infomessage-s_paramName-"+encodeURIComponent(s_paramName)+".html";        f.submit();}<input name="select_paramName" class="KeyWord" id="select_paramName" size="20" maxlength="30" type="text"><div id="searchresult" style="display: none;"></div>

$(document).ready(function(){ $('#select_paramName').keyup(function(){   //输入框的id为search,这里监听输入框的keyup事件  $.ajax({     type:"GET",     //AJAX提交方式为GET提交	   url:"__APP__/index/get_search_showdiv",   //处理页的URL地址	   data:"s_Name="+encodeURIComponent($('#select_paramName').val()),   //要传递的参数	   success:function(data){   //成功后执行的方法	      if(data != ""){				var ss;				ss = data.split("@");   //分割返回的字符串				var layer;				layer = "<table>";     //创建一个table				for(var i=0;i<ss.length-1;i++){				 layer += "<tr><td class='line'>"+ss[i]+"</td></tr>";				}				layer += "</table>";				$('#searchresult').empty();  //先清空#searchresult下的所有子元素				$('#searchresult').append(layer);//将刚才创建的table插入到#searchresult内				$("#searchresult").css("display", "");				$('.line').hover(function(){  //监听提示框的鼠标悬停事件				 $(this).addClass("hover"); 				},function(){				 $(this).removeClass("hover");				});				$('.line').click(function(){  //监听提示框的鼠标单击事件				 $('#select_paramName').val($(this).text());				 $("#searchresult").css("display", "none"); 				 ChangeCoords();				});			   }else{				$('#searchresult').empty();			   }	   }  }); });});


后台:
public function get_search_showdiv()	{	   //urlencode urldecode 文本框自动提示	   $keyword = urldecode($_GET['s_Name']);	   $condition = "f_hotname like '%".$keyword."%'";	   $info=$this->model->table('forest')->field('f_hotname')->where($condition)->order('f_id desc')->limit(5)->select();	   if($keyword !=""){		   foreach($info as $vo)     		   {      			 echo $vo['f_hotname'].'@';    		   } 	   }else{	       		   echo "";	   }	}


问题症状:比如输入“百度”    
在div   #searchresult   里显示:
百度杀毒
百度卫士
百度影音

如果选择第一项百度杀毒,火狐浏览器这样显示:
http://192.168.1.101/index/select_infomessage-s_paramName-%EF%BB%BF%百度杀毒.html
什么也没有。。。
如果选择第二项百度卫士,火狐浏览器这样显示:
http://192.168.1.101/index/select_infomessage-s_paramName-百度卫士.html
正常搜索,可以搜索到信息。其它项也是正常,唯独第一项就不正常。

度娘说是bom头,我所有页面都是去bom头的,编码也是utf8,尝试了很多也解决不了问题。
为什么会在第一项时候会加入%EF%BB%BF%,,,,, 在其它项都可以正常显示的。


回复讨论(解决方案)

%EF%BB%BF 不就是 BOM 头的 url 编码吗?
因为只有一个,所以你程序加载的文件中,只有一个有 BOM 头

public function get_search_showdiv()
这个函数所在php脚本文件有BOM

%EF%BB%BF 不就是 BOM 头的 url 编码吗?
因为只有一个,所以你程序加载的文件中,只有一个有 BOM 头



不好意思,这几天出差,刚刚回来,什么意思,没看明白。

utf-8 文件的 BOM 头的十六进制表示是 EFBBBF
url 编码后是 %EF%BB%BF

ajax 请求的 url 为 __APP__/index/get_search_showdiv
显然这是在使用框架

框架在处理一个请求时,至少会加载 3 个文件
所以任何一个被加载的文件有 BOM 头,返回的内容就会有 BOM 头

连接变成 ....%EF%BB%BF百度杀毒.html
而不是 ....%EF%BB%BF%EF%BB%BF百度杀毒.html
就表示只有一个文件有 BOM 头

ajax 收到的是形如 xxx@xxx@xxx@ 的串
BOM 当然是附加在内容前面的: BOMxxx@xxx@xxx@
拆分成数组后,自然是只有第一项有 BOM 啦

那怎么解决这个问题呢

Statement
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
11 Best PHP URL Shortener Scripts (Free and Premium)11 Best PHP URL Shortener Scripts (Free and Premium)Mar 03, 2025 am 10:49 AM

Long URLs, often cluttered with keywords and tracking parameters, can deter visitors. A URL shortening script offers a solution, creating concise links ideal for social media and other platforms. These scripts are valuable for individual websites a

Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Build a React App With a Laravel Back End: Part 2, ReactBuild a React App With a Laravel Back End: Part 2, ReactMar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Announcement of 2025 PHP Situation SurveyAnnouncement of 2025 PHP Situation SurveyMar 03, 2025 pm 04:20 PM

The 2025 PHP Landscape Survey investigates current PHP development trends. It explores framework usage, deployment methods, and challenges, aiming to provide insights for developers and businesses. The survey anticipates growth in modern PHP versio

Notifications in LaravelNotifications in LaravelMar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

See all articles

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 agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)