0
我試圖在電子商務網站的付款頁面上創建可訪問的信用卡選擇。這裏是標記,我有:插入收音機組將其焦點移到最後一個單選按鈕而不是第一個
.cc__card {
display: inline-block;
margin-right: 0.3em;
position: relative;
}
.cc__card>input:focus+label {
outline-color: -webkit-focus-ring-color;
outline-style: auto;
}
.cc__card>input {
position: absolute;
top: 10px;
left: 10px;
opacity: 0;
z-index: -1;
}
.cc__icon {
height: 35px;
width: 54px;
background-repeat: no-repeat;
background-size: cover;
border: 1px solid transparent;
border-radius: 0.2em;
cursor: pointer;
transition: all 100ms ease-in;
}
.cc__icon.not-selected {
opacity: 0.45;
}
.cc__icon.selected {
border: 1px solid #000;
}
.cc__icon--visa {
background-image: url("../images/cc-icon-visa.png");
}
.cc__icon--mastercard {
background-image: url("../images/cc-icon-mastercard.png");
}
.cc__icon--amex {
background-image: url("../images/cc-icon-amex.png");
}
.cc__icon--discover {
background-image: url("../images/cc-icon-discover.png");
}
.cc__icon--other {
background-image: url("../images/cc-icon-other.png");
}
<label for="cardType">Select your Card Type</label>
<div class="cc__card">
<input id="cc-icon-other" type="radio" name="credit-card" value="other" tabindex="1" />
<label class="cc__icon cc__icon--other" for="cc-icon-other">
<span class="sr-only">Other</span>
</label>
</div>
<div class="cc__card">
<input id="cc-icon-visa" type="radio" name="credit-card" value="visa" />
<label class="cc__icon cc__icon--visa" for="cc-icon-visa">
<span class="sr-only">Visa</span>
</label>
</div>
<div class="cc__card">
<input id="cc-icon-master-card" type="radio" name="credit-card" value="mastercard" />
<label class="cc__icon cc__icon--mastercard" for="cc-icon-master-card">
<span class="sr-only">MasterCard</span>
</label>
</div>
<div class="cc__card">
<input id="cc-icon-discover" type="radio" name="credit-card" value="discover" />
<label class="cc__icon cc__icon--discover" for="cc-icon-discover">
<span class="sr-only">Discover</span>
</label>
</div>
<div class="cc__card">
<input id="cc-icon-american-express" type="radio" name="credit-card" value="amex" />
<label class="cc__icon cc__icon--amex" for="cc-icon-american-express">
<span class="sr-only">American Express</span>
</label>
</div>
但是,當我如所示的圖像在標籤進入最後單選按鈕而不是聚焦於第一的無線電組下面:
我需要第一個單選按鈕來關注用戶何時進入收音機組。在Chrome和FF的最新版本中,焦點移動到最後一個單選按鈕(美國運通),但在IE 11中移動到第二個單選按鈕(Visa)。
這裏唯一使用的JS是一個onchange事件處理程序,它只讀取所選單選按鈕的id屬性。
有人可以提供任何建議嗎?
謝謝!我明白,但我無法弄清楚爲什麼焦點會移到最後一個單選按鈕,而不是Chrome和FF中的第一個,還有IE 11中的第二個。對此有何想法?或以任何方式強制執行命令? – Larrydx