我已经准备好了一些类似的问题并且已经验证了jquery是第一个包含的脚本......
// this test confirms that jquery is defined
if (typeof jQuery == 'undefined') {
alert('jquery not defined');
}
// (this is being alerted)
else { alert( 'jquery is defined'); }
// this is what I want to achieve (to begin with)
jquery("#free-signup").css( 'display', 'none' );
和jquery似乎确实被定义了......我做错了什么?!
答案 0 :(得分:4)
JavaScript区分大小写。您应该使用正确的对象名称:
// v
jQuery("#free-signup").css( 'display', 'none' );
或快捷方式:
$("#free-signup").css( 'display', 'none' );