搜索欄不支持https的處理方法
發(fā)表時(shí)間:2023-09-16 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]本文主要和大家介紹了百度站內(nèi)搜索不支持https的解決方法,需要的朋友可以參考下,希望能幫助到大家。最近手機(jī)端開啟了https,為了綠鎖需要解決如下問題:1、圖片2、js3、css樣式4、form查詢也要用https第一種方法:通過js實(shí)現(xiàn)但是最近做一個客戶需求的時(shí)候突然想到了一個曲線求國的辦法,...
本文主要和大家介紹了百度站內(nèi)搜索不支持https的解決方法,需要的朋友可以參考下,希望能幫助到大家。
最近手機(jī)端開啟了https,為了綠鎖需要解決如下問題:
1、圖片
2、js
3、css樣式
4、form查詢也要用https
第一種方法:通過js實(shí)現(xiàn)
但是最近做一個客戶需求的時(shí)候突然想到了一個曲線求國的辦法,反正我測試百度站內(nèi)搜索在https網(wǎng)站上是能用了,而且方法特別的暴力...
思路就是,做一個input,做一個button,在input里面輸入關(guān)鍵詞,用js控制點(diǎn)擊button直接打開百度站內(nèi)搜索url+關(guān)鍵詞。反正能用了,我也不知道這么干對不對。。。
上代碼:
<input type="text" name="q" id="bdcsMain" value="百度站內(nèi)搜索" onfocus="if (value =='百度站內(nèi)搜索'){value =''}" onblur="if (value ==''){value='百度站內(nèi)搜索'}" >
<button class="search-submit" id="btnPost" type="submit" onclick="window.open('http://zhannei.baidu.com/cse/search?s=1849457021752692468&entry=1&q='+document.getElementById('bdcsMain').value)">搜索</button>
只需要復(fù)制你百度站內(nèi)搜索結(jié)果頁的url替換掉上面代碼中的“http://zhannei.baidu.com/cse/search?s=1849457021752692468&entry=1&q=”就OK了。
第二種方法:通過php跳轉(zhuǎn)實(shí)現(xiàn)
搜索代碼不是js的
<form action="http://so.php.cn/cse/search" method="get" target="_blank" class="bdcs-search-form" id="bdcs-search-form">
<input name="s" value="10520733385329581432" type="hidden">
<input name="entry" value="1" type="hidden">
<input name="ie" value="gbk" type="hidden">
<input name="nsid" value="3" type="hidden">
<input name="ie" value="gbk" type="hidden">
<input type="text" placeholder="請輸入您感興趣的關(guān)鍵字" value="" id="search_txt1" maxlength="18" class="search_txt" name="q">
<input class="search_btn" value="搜 索" type="submit">
</form>
修改以后將action換成本地的php文件
<p class="search">
<form action="/do/search.php" method="get" target="_blank" class="bdcs-search-form" id="bdcs-search-form">
<input name="s" value="10520733385329581432" type="hidden">
<input name="entry" value="1" type="hidden">
<input name="ie" value="gbk" type="hidden">
<input name="nsid" value="3" type="hidden">
<input name="ie" value="gbk" type="hidden">
<input type="text" placeholder="請輸入您感興趣的關(guān)鍵字" value="" id="search_txt1" maxlength="18" class="search_txt" name="q">
<input class="search_btn" value="搜 索" type="submit">
</form>
</p>
search.php如下
<?php
error_reporting(E_ALL & ~E_NOTICE);
$s=is_numeric($_GET['s'])?$_GET['s']:0;
$entry=$_GET['entry']?intval($_GET['entry']):0;
$nsid=$_GET['nsid']?intval($_GET['nsid']):0;
$ie=$_GET['ie']?substr($_GET['ie'],0,3):0;
$q=$_GET['q']?urlencode($_GET['q']):'';
$url_str="http://so.jb51.net/cse/search?s=$s&entry=$entry&ie=$ie&nsid=$nsid&ie=$ie&q=$q";
header("Location: $url_str");
?>
相關(guān)推薦:
php-curl不支持https, 已安裝ssl擴(kuò)展
以上就是搜索欄不支持https的解決辦法的詳細(xì)內(nèi)容,更多請關(guān)注php中文網(wǎng)其它相關(guān)文章!
網(wǎng)站建設(shè)是一個廣義的術(shù)語,涵蓋了許多不同的技能和學(xué)科中所使用的生產(chǎn)和維護(hù)的網(wǎng)站。