Google Blogger 使用 javascript 在小部件或可编辑区域上为管理员放置一个快速编辑图标。
这是 HTML:
<a class="quickedit" href="xxxxxx" onclick="return _WidgetManager._PopupConfig(document.getElementById("BlogArchive1"));" target="configBlogArchive1" title="Edit">
<img alt="" height="18" src="http://img1.blogblog.com/img/icon18_wrench_allbkg.png" width="18">
</a>
我正在尝试用 Font Awesome Icon 替换该图像。这是我使用的 jQuery:
$('a.quickedit img').replaceWith('<i class="icon-wrench"></i>');
原图还在,console.log里也没有相关的错误,为什么还是不行呢?顺便说一句,我正在使用该$(document).ready
功能,版本为 1.7.1。
编辑:我还注意到使用它会破坏页面上的所有其他 jQuery 脚本。所以可能会发生冲突。
这是没有我要添加的脚本的所有内容:
<script type='text/javascript'>
$(document).ready(function() {
$(".menu-toggle").click(function (e) {
$(this).next('ul').slideToggle("fast");
});
$("#LinkList1 ul li").click(function (e) {
$(this).find('ul').slideToggle("fast");
});
$("body a, .camera_prev, .camera_next, .camera_pag li").hover(function(){
link_audio.play();
},
function(){
link_audio.load();
});
$(window).scroll(function(){
if ($(this).scrollTop() > 100) {
$('.scrollup').fadeIn();
}
else {
$('.scrollup').fadeOut();
}
});
$('.scrollup').click(function(){
$("html, body").animate({ scrollTop: 0 }, 600);
return false;
});
});
</script>
再次编辑:无论我尝试什么,似乎所有其他脚本都中断并且不再运行,并且在 console.log 中没有视觉错误或错误。在此处查看有问题的模板/站点:http: //xarpixels-revitalize-template.blogspot.com/
仅供参考,只有管理员甚至可以看到 .quickedit 图标。