我正在尝试对标准diigo bookmarklet进行简单的更改。我希望在Diigo的“添加新书签”表单中添加固定标签。我的代码是:
javascript:javascript:(function(){
var url=location.href;
var title=document.title||url;
var tagsvar='TestTag';
var desc=(window.getSelection?window.getSelection().toString():document.getSelection?
document.getSelection():document.selection.createRange().text);
window.open('https://www.diigo.com/post?
url='+encodeURIComponent(url)+'
&title='+encodeURIComponent(title)+'
&desc='+encodeURIComponent(desc)+'
&tags='+tagsvar+'&client=simplelet#main','_blank','menubar=no,height=580,width=608,toolbar=no,scrollbars=no,status=no');
})();
我添加的全部是:
var tagsvar='TestTag';
和
&tags='+tagsvar+'
Url,title和desc正确输入Diigo表单,但标签字段为空白。
我是javascript的新手,所以可能是一个基本错误。 谢谢你的帮助