我目前有这段代码
<script>
$('well').click(function () {
$('span').css('background-color', '#000').css('color', '#000');
});
</script>
当我点击这个“井”(从引导程序)时,我试图制作颜色到这个井的范围要改变..
答案 0 :(得分:3)
如果well
类而不是.well
$('.well').click(function () {
$('span').css({backgroundColor:'#000', color:'#000'});
});
如果well
id 而不是#well
$('#well').click(function () {
$('span').css({backgroundColor:'#000', color:'#000'});
});
还要确保将代码包装在DOM中:
jQuery(function( $ ) { // DOM is now read and ready to be manipulated and $ alias secured
// Your $ jQuery code here
});