书签在锚点中不起作用

Bookmarklet not working when in anchor

本文关键字:不起作用 书签      更新时间:2023-09-26

我在创建JS书签时遇到问题,

我有以下内容,当单击时可以完美工作,只有当我将其包装在锚标签中时,它才不再起作用......

javascript:(function(){document.body.innerHTML += '<img src="http://www.dannemann.com/images/lensflarePhilosophy.png" style="position: fixed; left: 10px; bottom: 10px; z-index: 1000">';})();

右移动括号:

javascript:(function(){
  document.body.innerHTML += 
   '<img src="http://www.dannemann.com/images/lensflarePhilosophy.png" '+
   'style="position: fixed; left: 10px; bottom: 10px; z-index: 1000">';}());
 //                                                                       ^moved