我用鼠标突出显示以下文本:
Site: http://www.solidfiles.com
Sharecode[?]: /d/1234567890
然后使用以下bookmarklet命令:
javascript:(function(){
var txt = window.getSelection();
txt = txt.replace('[?]', '');
txt = txt.replace('Site: ', '');
txt = txt.replace('Sharecode: ', '');
txt = txt.replace(/\n/g, '');
window.open(txt);
})();
使用txt.replace命令时,javascript停止工作。我不知道怎么了请帮忙。