搜索当前网站标题和主机书签

时间:2009-11-13 09:13:54

标签: bookmarklet if-statement

我有一个书签,当前网站TITLE并在我的网站上搜索:

javascript:q=(document.location.host);void(open('http://example.com/search.php?search='+document.title,'_self','resizable,location,menubar,toolbar,scrollbars,status'));

但是现在我想更改这个书签,所以它会像现在一样搜索当前的网站标题,如果找不到标题,它应该搜索网站主机。所以我想我应该使用 else 选项或者什么????有没有办法做到这一点?我不知道书签应该是什么......

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

将代码中的document.title替换为:

((document.title) ? document.title : document.location.host)