这是我的剧本:
$( "#top" ).click(function() {
$( "#mid" ).slideDown( "slow", function() {
// Animation complete.
});
});
当我运行脚本网站并收到此错误不起作用时。
http://i62.tinypic.com/23m8zs7.jpg
我猜因为它不起作用...你可以帮我解决错误吗?
提前致谢
答案 0 :(得分:0)
jQuery默认包含在WordPress中in no-conflict mode。在noConflict()
模式下,jQuery的全局$
快捷方式不可用,因此您需要使用:
jQuery(document).ready(function($) {
// Inside of this function, $() will work as an alias for jQuery()
// and other libraries also using $ will not be accessible under this shortcut
$( "#top" ).click(function() {
// etc.
});
});