我正在尝试使用引导按钮切换背景图像。
我在css...
body {
background-image: url('img/myimage_1.gif');
}
在 HTML...
<button type="button" id="bkgchange" class="btn" data-toggle="button">Change the background</button>
并在脚本中...
$( 'bkgchange' ).click(function() {
$( #body ).css( 'background-image', '~/img/myimage_2.gif' );
});
而且它不工作?!任何指针。我知道想要弄乱正文属性是非常规的,我不能将图像作为 div 背景或容器中,因为它本身不会表现...
与直接解决方案一样受欢迎的替代方案。