我正在使用GTmetrix来检查我的网站速度,其中一个建议是采用我在外部引用的小型JavaScript文件,然后将其内联。我知道我需要在页脚中的脚本标签中添加它,但是我是否需要编辑任何现有内容?
我的代码是:
jQuery(document).ready(function()
{
jQuery('.hide-this-part-more').click(function () {
// Get the hidden element
var hidden_element = jQuery('#'+this.id).next();
hidden_element.slideToggle('slow');
// Change the more link text
if (hidden_element.attr('status') === 'invisible') {
hidden_element.attr('status', 'visible');
// Make the morelink a lesslink
jQuery ('#'+this.id).text('Less »');
}
else {
hidden_element.attr('status', 'invisible');
// Get the morelink text, that the user wants to be displayed
var morelink_text = jQuery('#'+this.id).attr('morelink-text');
// Make the lesslink a more link
jQuery('#'+this.id).text(morelink_text+' »');
}
});
});
由于
答案 0 :(得分:0)
除非外部脚本以某种方式涉及此点击处理程序:否。