codecamp

6.1、搜索结果要求包含两个及两个以上关键字

        一般搜索引擎需要在多个关键字之间加上“+”,而GOOGLE无需用明文的“+”来表示逻辑“与”操作,只要空格就可以了。


        示例:搜索所有包含关键词“易筋经”和“吸星大法”的中文网页
        搜索:“易筋经 吸星大法”
        结果:已搜索有关易筋经 吸星大法的中文(简体)网页。 共约有774项查询结果,这是第1-10项 。 搜索用时 0.24秒。

        注意:文章中搜索语法外面的引号仅起引用作用,不能带入搜索栏内。 


6、初阶搜索
6.2、搜索结果要求不包含某些特定信息
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }