為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

www.google.co.uk/webhp?complete=0 + greasemonkey has worked fine for months, recently it has stopped suggesting from my search history , any ideas why ? ta

  • 11 回覆
  • 1 有這個問題
  • 4 次檢視
  • 最近回覆由 cor-el

more options

It is my preference that Google searches using my previous search history and it has worked fine for months. recently no auto suggestions pop up as i type in the Google box . Any ideas why ?? OS is XP Home

It is my preference that Google searches using my previous search history and it has worked fine for months. recently no auto suggestions pop up as i type in the Google box . Any ideas why ?? OS is XP Home

所有回覆 (11)

more options

Are you allowing Google to use javascript? It will not do that without javascript.

more options

thanks ........... can you confirm where i check that javascript Google setting .

more options

.......... just found it is enabled under tools options

more options

You are not running any kind of javascript control such as NoScript or YesScript?

more options

Thanks Finitarry, please tell me where to check for and javascript controls. i cant think i am as nothing has changed since it was working ?? any other ideas ?

more options

Note that the www.google.co.uk/webhp?complete=0 site uses autocomplete=off.
So Firefox won't offer to suggest terms that you used before unless that autocomplete=off is removed.

more options

thanks cor-el, can you confirm should 'Auto-complete on' be ticked or not ticked on the Greasemonkey drop down menu. however i have tried ticked and not ticked and still no sugestions as i type in google ???

more options

any more suggestions would be really appreciated. thanks

more options

You can paste this code in the command line in the Web Console (Web Developer > Web Console;Ctrl+Shift+K) to verify that no input elements have autocomplete=off;

var A='autocomplete',c=0,e,E,f=0,T='\n',e=document.querySelectorAll('input['+A+']');
for(j=0;E=e[j];++j){T+='['+(++c)+'] '+(E.name||'#'+E.id)+' ('+(V=E.getAttribute(A).toLowerCase())+')\n';}
alert('autocomplete: '+c+T);
more options

Thanks Cor-el

That looks scary stuff . can you talk me through that in detail as to what it will do etc > thanks . Cheers Steve g

more options

The Web Console is one of the development tools that are included in current Firefox versions.

That console opens at the bottom of the Firefox windows and has a command line that makes it possible to evaluate JavaScript code in the context of the current web page.

See also "The command line interpreter":