js如何控制在选中一个radio值时 立刻做出动作
<h3>请选择日期</h3><inputtype="radio"name="date"value='2014-12-26'id="2014-12-26"checked/>...
<h3>请选择日期</h3>
<input type="radio" name="date" value='2014-12-26' id="2014-12-26" checked/>2014-12-26
<input type="radio" name="date" value='2014-12-28' id="2014-12-28"/>2014-12-28
我想写个function 在选定2014-12-28的时候立刻alert一句话 这要怎么做
谢谢 展开
<input type="radio" name="date" value='2014-12-26' id="2014-12-26" checked/>2014-12-26
<input type="radio" name="date" value='2014-12-28' id="2014-12-28"/>2014-12-28
我想写个function 在选定2014-12-28的时候立刻alert一句话 这要怎么做
谢谢 展开
1个回答
展开全部
h3>请选择日期</h3>
<input type="radio" name="date" value='2014-12-26' id="2014-12-26" checked/>2014-12-26
<input type="radio" name="date" value='2014-12-28' id="2014-12-28"/>2014-12-28
<script>
var oDate=document.getElementById("2014-12-28");
oDate.onclick=function(){
alert("2014-12-28");
}
</script>
<input type="radio" name="date" value='2014-12-26' id="2014-12-26" checked/>2014-12-26
<input type="radio" name="date" value='2014-12-28' id="2014-12-28"/>2014-12-28
<script>
var oDate=document.getElementById("2014-12-28");
oDate.onclick=function(){
alert("2014-12-28");
}
</script>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询