我是 SP 设计/开发的新手,我想将自定义 jQuery 代码添加到Format text > Edit Source:
$('#div1 ul li').hover(
function(){
$(this).find('a').animate({'top': '0%'}, 300);
},
function(){
$(this).find('a').animate({'top': '75%'}, 300);
}
);
它告诉我我需要“使用嵌入命令”。
我怎么做?