Created
July 23, 2012 03:17
-
-
Save gawaooooo/3161862 to your computer and use it in GitHub Desktop.
【jQuery】background image を変更する
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 設定されたbackground-imageのurlを無効にする場合 | |
$('#hoge').css('background-image', 'none'); | |
// background-imageのurlを変更する場合 | |
$('#hoge').css('background-image', 'url(test.png)'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment