在这里我有一个页面,当我想单击按钮时,我编写了一个代码来隐藏内容,但是有错误:
http://jsbin.com/EVEWOta/2/edit
和jQuery代码:
$('#button').click {
$('#firstPage').css('display', 'none');
}
在这里我有一个页面,当我想单击按钮时,我编写了一个代码来隐藏内容,但是有错误:
http://jsbin.com/EVEWOta/2/edit
和jQuery代码:
$('#button').click {
$('#firstPage').css('display', 'none');
}
您应该以正确的方式使用.on()
或.click()
运行!并且还使用.hide()
代替.css()
$('#button').on('click', function() {
$('#firstPage').hide();
});
$('#button').click(function() {
$('#firstPage').hide();
});
它会像 (With .on()
)
$('#button').on('click',function(){
$('#firstPage').css('display', 'none');
});
或者你也可以简单地写成 (Without .on()
)
$('#button').click(function() {
$('#firstPage').css('display', 'none');
});
试试这样
$('#button').click(function() {
$('#firstPage').css('display', 'none');
})
您错过了添加处理程序(eventObject)
尝试这个。
$('#button').click(function() {
$('#firstPage').css('display', 'none');
});
从你的小提琴看来,
$('#firstPage').hide
是错的
反而
$('#firstPage').hide();