Skip to content

Commit

Permalink
v2.6.2 为Wx网址增加协议头补全
Browse files Browse the repository at this point in the history
  • Loading branch information
DiamonWoo authored Oct 7, 2023
1 parent a1ad371 commit ef18aef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index2.html
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ <h3>国内搜</h3> <!-- size="35%" -->
<input type="Radio" name="sou" value="7">
<a href="https://www.nona.de" title="德国搜索,支持中文分词">Nona</a>
<input type="Radio" name="sou" value="8">
<a title="悄悄地在Wx内打开网址,方便转发时有标题">Wx网址</a> <!-- href="" -->
<a title="打开原网址,wx内转发时会有标题。">Wx网址</a> <!-- href="" -->
</small>
<!-- disabled="disabled" -->
<br>
Expand Down Expand Up @@ -715,7 +715,7 @@ <h3>互联互通,才是真正的互联网</h3>
if (go[7].checked) window.open("https://www.nona.de/?q=" + wen); //德
//if (go[8].checked) window.open("https://www.qwant.com/?q=" + wen).focus(); //法
//if (go[8].checked) window.open("https://yandex.com/search/?text=" + wen); //俄
if (go[8].checked) window.open(wen); //原网址
if (go[8].checked) {if (!wen.startsWith("http")) wen="http://"+wen; window.open(wen);} //原网址
// 9 空缺行吗?不行。
if (go[9].checked) window.open("https://search.cctv.com/search.php?qtext=" + wen);
if (go[10].checked) window.open("https://vip.1905.com/Search?q=" + wen);
Expand Down

0 comments on commit ef18aef

Please sign in to comment.