2014-10-17 61 views
0

我使用插件調用http://www.skitter-slider.net/使用jQuery如何重寫沒有在jQuery中的元素的CSS規則?

和我遇到一個問題:

我想重寫默認IMG CSS樣式:

.box_skitter .box_clone img { 
    position: absolute; 
    top: 0; 
    left: 0; 
    z-index: 20; 

} 

,但我不能被改寫元素class,id等。

$('.box_skitter .box_clone img').css({'width':w+'px','height':h+'px'}); 

因爲插件會動態地創建img元素,意味着它沒有任何作用,我設置heig ht,元素寬度img

那麼有什麼解決方案?

+2

您需要創建img元素的後應用的jQuery。不在準備就緒 – 2014-10-17 07:52:56

+0

焦點話題:jQuery假定像素,你不需要指定。 – George 2014-10-17 07:53:58

+0

它有一個'主題'選項。你可以使用你自己的主題。 – artm 2014-10-17 07:57:20

回答

0

我想我找到一個方法來解決:

$('head').append('<style>.box_skitter .box_clone img{width:'+w+'px !important;}</style>');