【发布时间】:2011-03-21 00:46:09
【问题描述】:
查看错误: http://jsfiddle.net/sEdGz/2/
//脚本有效,但是点击的radio没有checked=checked //mysql和php很好用
$('#form1').live("click change", function() { ....
<div class='divtoclick'>neu berechnen</div>
<form id="form1" method="post" name="bestellformular">
<input value="101" name="flyer_anzahl" type="radio" /> 1.000
<input name="flyer_anzahl" type="radio" value="102" checked="checked"/>
...
我想得到这个:
$('#form1').find('.divtoclick').live("click", .....
$('input#form1').live("change", .....
有人可以帮助我吗?谢谢
【问题讨论】:
标签: jquery ajax post radio-button checked