1

我已经准备了一些类似的问题,并验证了 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 似乎确实被定义了......我做错了什么?!

4

1 回答 1

4

JavaScript 区分大小写。您应该使用正确的对象名称:

// v
  jQuery("#free-signup").css( 'display', 'none' );

或快捷方式:

$("#free-signup").css( 'display', 'none' );
于 2012-11-20T12:36:14.577 回答