這裏我使用了自舉...複選框,當我點擊複選框它選中,但在引導設計它不顯示...複選框在笨
我的代碼:
<label for="success" class="btn btn-success">Success <input type="checkbox" value="" id="success" class="badgebox"><span class="badge">✓</span></label>
我CSS代碼:
<style>
/* Hiding the checkbox, but allowing it to be focused */
.badgebox
{
opacity: 0;
}
.badgebox + .badge
{
/* Move the check mark away when unchecked */
text-indent: -999999px;
/* Makes the badge's width stay the same checked and unchecked */
width: 27px;
}
.badgebox:focus + .badge
{
/* Set something to make the badge looks focused */
/* This really depends on the application, in my case it was: */
/* Adding a light border */
box-shadow: inset 0px 0px 5px;
/* Taking the difference out of the padding */
}
.badgebox:checked + .badge
{
/* Move the check mark back when checked */
text-indent: 0;
}</style>
能否簡單闡述您的問題。因爲我檢查了你的代碼,它運行的很好。如果可能的話,然後告訴我們什麼你得到你想要得到的東西。 – Chirag
這是工作的兄弟......但我們使用動態數據意味着whay我們要做的。我的問題是 –
1.id =「複選框-1」如何使用這個.... 2.如何選擇多個複選框表格3.如何選擇行值送入數據庫... –