我試圖挽救一個元素的背景圖像,刪除它,然後也許添加回來後jQuery的 - CSS(「背景圖片」,變量)不工作:(
var current_bg_image = $("#div").css("background-image");
if(something){
$("#div").css("background-image", "none");
}else{
$("#div").css("background-image", current_bg_image); // not working...
}
。
其中背景圖像應該加回不工作... 但是,如果我改變current_bg_image
與"url(something.jpg)"
它的工作原理,似乎CSS()不使用變量的一部分?
TX,實際問題是,'VAR current_bg_image = $( 「#DIV」),CSS( 「背景圖片」);'。每次調用函數時都運行,我把它放在外面,現在它確定:) – Alex 2011-03-23 06:49:42