|
阅读:1963回复:2
求修改Bookmarklet
想把站内搜索小书签改成直接搜索站内某个关键词,比如firefox,应该怎么修改呢?
javascript:(function(){%20p=prompt('Search%20term:','');%20if(p){%20document.location.href='http://www.google.com/search?q=site:'+document.location.href.split('/')[2]+'%20'+escape(p)}%20})(); |
|
|
1楼#
发布于:2013-05-31 11:56
yfdyh000: 谢谢你!我刚开始在w3school学习 |
|
|
2楼#
发布于:2013-05-31 11:56
javascript:(function(){ p=prompt('Search term:','firefox'); if(p){ document.location.href='http://www.google.com/search?q=site:'+document.location.href.split('/')[2]+' '+escape(p)} })();
javascript:(function(){ p='firefox'; if(p){ document.location.href='http://www.google.com/search?q=site:'+document.location.href.split('/')[2]+' '+escape(p)} })();没什么难度。可以去学学 http://www.w3school.com.cn/js/index.asp |
|