4

1.如何在点击时将href设置为复选框

<a href="/Demo/sense/show/4">
  <input type="checkbox" />Yes
</a>

  <a href="/Demo/sense/list">
      <input type="checkbox" />NO
    </a>

但是当我选中一个复选框时..它不会转到另一个页面..

2.how to set check on click on YES text 而不是Yes Checkbox Please Help me..thanx

4

3 回答 3

14

<input type="checkbox" onclick='window.location.assign("/Demo/sense/show/4")'/>Yes

于 2013-06-24T06:18:52.557 回答
3

也许是这样的?

<input id="cb" type="checkbox" onchange="window.location.href='http://google.com/'">

然后也许还有一个标签:

<label for="cb">Yes</label>
于 2013-06-24T06:24:20.500 回答
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>
于 2013-06-24T06:28:55.400 回答