作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
好吧,我有一个关于如何在此处制作的问题:
我想在对方点击“Text one”时制作
然后选中“复选框”并在新选项卡中打开链接,“文本二”等也是如此......
图片:
代码:
<form action="demo_form.asp" method="get">
<a href="LinkURL" target="_blank">
<input type="checkbox" name="link1" value="link"> Text one</a>
<br>
<br>
<a href="LinkURL" target="_blank">
<input type="checkbox" name="link2" value="link"> Text two</a>
</form>
最佳答案
尝试标签和jquery
$(document).ready(function(){
$('label[for=link]').on('click', function(){
alert('write here code');
window.location.href= 'http://www.rohitazad.com';
});
$('label[for=link2]').on('click', function(){
alert('write here code 2');
window.location.href= 'http://www.rohitazad.com';
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<form action="demo_form.asp" method="get">
<input type="checkbox" name="link1" value="link" id="link"><label for="link">Text one</label>
<br>
<br>
<input type="checkbox" name="link2" value="link" id="link2"> <label for="link2">
Text two</label>
</form>
关于html - 标记为单击链接的复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34632839/
我是一名优秀的程序员,十分优秀!