似乎很难让一个链接在复选框标签内工作,覆盖默认的点击事件
<input type="checkbox" name="pr1" id="checkbox-5a" />
<label for="checkbox-5a">Check3 <a href="http://www.google.com" data-ajax="false" rel="external" style=" z-index:70000;">link</a></label>
它可能需要javascript才能使其工作,以及如何?谢谢
http://jsfiddle.net/ca11111/M7Bwc/1
编辑:似乎可以用 onclick 和 location.href
<input type="checkbox" name="pr1" id="checkbox-5a" />
<label for="checkbox-5a">Check3 <a onclick="location.href='http://www.google.com'">link</a></label>