我想使用jQuery按鈕元素作爲「獨立」 - 沒有使用.button()
函數(包括翻轉效果)。將.button()
分別分配給每個人將是相當複雜的...在框架外部使用jQuery UI按鈕
我在尋找的是使用jQuery UI的直接CSS類來創建某種「組合」類的解決方案,例如:(注意:只用於描述「進口」,我知道這是無效的)
.ui-button-custom {
"import" ui-state-default;
}
.ui-button-custom:hover {
"import" ui-state-hover;
}
其他可能的方法是動態地應用.button()
特定的元素,即是這樣的:
// gets all elements with "custom-button" in the class attr
$("a[class*=custom-button").each(function(){
var t=$(this);
// apply .button() to all of them
t.button({
icons: {
// get the icon dynamically from the class name:
// strip off "custom-button-" and the rest is the icon name
primary: t.attr('class').substring(lastIndexOf('custom-button-'))
}
});
});
<a href="#" class="custom-button-ui-icon-refresh">Log In</a>
注意:這只是一個解決方案的大綱。我剛纔用jQuery UI的一點經驗,所以也許更有經驗的人能指出這種想法的問題...
我的問題是:
- 是否有任何其他的方式如何做到這一點?
- 如果不是&如果純CSS不可能 - 如何完成上面的JS(如果可能)?我知道
.button()
使用.next()
我相當不明白...
這將僅用於更改默認/懸停狀態。但是,我需要獲得按鈕的所有行爲,包括圖標... – Michal 2012-04-24 14:20:22
是的,我可以看到,這意味着需要很多家務來獲得正確的外觀和感覺。 – Falle1234 2012-04-24 14:23:59
thanx編輯我的朋友,但是 - 這怎麼會產生每個按鈕的個別圖標? – Michal 2012-04-24 14:31:15