jquery单选框radio绑定click事件实现方法
作者:bea
本文实例讲述了jquery单选框radio绑定click事件实现方法。分享给大家供大家参考。 具体实现方法如下: 代码如下: <html> <head> <title>单选框radio绑定click事件</title> <meta http-equiv="content-type" content="text/html;charset=utf-8" /> <script type="text/jav
本文实例讲述了jquery单选框radio绑定click事件实现方法。分享给大家供大家参考。
具体实现方法如下:
代码如下:
<html>
<head>
<title>单选框radio绑定click事件</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<script type="text/javascript" src="jquery-1.8.2.min.js"></script>
<script type="text/javascript">
$(function(){
$(":radio").click(function(){
alert("您是..." + $(this).val());
});
});
</script>
<style type="text/css">
h5{color:blue;}
textarea{resize:none;}
#word{color:red;}
</style>
</head>
<body>
<h5>单选框 radio 绑定 click 事件</h5>
<form action="" method="">
<input type="radio" name="gender" value="男性">男性
<input type="radio" name="gender" value="女性">女性
<input type="radio" name="gender" value="春哥">春哥
</form>
</body>
</html>
希望本文所述对大家的jQuery程序设计有所帮助。
有用 | 无用
具体实现方法如下:
代码如下:
<html>
<head>
<title>单选框radio绑定click事件</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<script type="text/javascript" src="jquery-1.8.2.min.js"></script>
<script type="text/javascript">
$(function(){
$(":radio").click(function(){
alert("您是..." + $(this).val());
});
});
</script>
<style type="text/css">
h5{color:blue;}
textarea{resize:none;}
#word{color:red;}
</style>
</head>
<body>
<h5>单选框 radio 绑定 click 事件</h5>
<form action="" method="">
<input type="radio" name="gender" value="男性">男性
<input type="radio" name="gender" value="女性">女性
<input type="radio" name="gender" value="春哥">春哥
</form>
</body>
</html>
希望本文所述对大家的jQuery程序设计有所帮助。
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- jQuery中empty()方法用法实例
- jQuery中replaceAll()方法用法实例
- jQuery中wrapInner()方法用法实例
- jQuery中wrapAll()方法用法实例
- jQuery中unwrap()方法用法实例
- jquery搜索框效果实现方法
- js表头排序实现方法
- js计算任意值之间随机数的方法
- jquery事件preventDefault()方法用法实例
- jQuery老黄历完整实现方法
- jquery中one()方法的用法实例
- jquery中show()、hide()和toggle()用法实例
- 用js判断是否为360浏览器的实现代码
- jquery果冻抖动效果实现方法
- jquery通过ajax加载一段文本内容的方法
- js实现遮罩层弹出框的方法
- jquery隔行换色效果实现方法
- JavaScript中实现依赖注入的思路分享
- jquery实现textarea输入框限制字数的方法