1.如何将href设置为单击
上的复选框<a href="/Demo/sense/show/4">
<input type="checkbox" />Yes
</a>
<a href="/Demo/sense/list">
<input type="checkbox" />NO
</a>
但是当我选中一个复选框时......它不会转到其他页面..
2.如何设置选中,点击是文字而不是是复选框 请帮我.. 感谢名单
答案 0 :(得分:10)
<input type="checkbox" onclick='window.location.assign("/Demo/sense/show/4")'/>Yes
答案 1 :(得分:2)
也许是这样的?
<input id="cb" type="checkbox" onchange="window.location.href='http://google.com/'">
然后也许是它的标签:
<label for="cb">Yes</label>
答案 2 :(得分:0)
只需简化您的代码:
<input type="checkbox" id="chk1" />Yes
<input type="checkbox" id="chk2" />NO
<script type="text/javascript">
$(document).ready(function(){
$('#chk1').click(function(){
window.location='http://www.yahoo.com'; // link of your desired page.
});
});
</script>