此时元素输入上不允许属性href

时间:2013-05-23 14:33:42

标签: html5

我知道我的代码无效(HTML5验证检查器失败)以及原因 - 是否有任何简单的方法来验证这一点而不更改其他属性或重新开始?

                        <input type="radio" name="optionsRadios" id="optionsRadios2" value="option2" data-toggle="collapse" href="#card">PayPal / Maestro</label>

                        <div id="card" class="accordion-body collapse in">

href =“#card”会触发折叠手风琴的事件。是的,它有效,WC3验证是指导...但是嘿

1 个答案:

答案 0 :(得分:0)

你可以这样做

<input type="radio" name="optionsRadios" id="optionsRadios2" value="option2" data-toggle="collapse" onfocus="doSomething();"/>

function doSomething(){
  //do what you want to do here
}