Bookmarklet在锚定时无法正常工作

时间:2012-06-14 12:53:06

标签: javascript html

我在创建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">';})();

1 个答案:

答案 0 :(得分:1)

将括号移到右侧:

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