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