在网站
http://offline.raileisure.com/
2个自定义单选按钮'Station MAsters House'和'Carriage'在更改时似乎没有运行jquery的功能。
它与自定义类'样式'
有关更改时应该有一个简单的警报,但它不起作用....但如果我取出class ='styled'
它确实有效由于
利
答案 0 :(得分:2)
当你“设定”它时,它不再是一个活动的单选按钮
<td style="line-height:2em;">
<span class="radio" style="background-position: 0pt -48px;"></span>
<input class="styled" type="radio" value="2" name="property">
Carriage
</td>
它有display = none,而不是你点击的内容 这工作
$(".radio").click(function() {
$(this).next('input').attr("checked","checked");
});
答案 1 :(得分:0)
我想inputs[a].onchange = Custom.clear;
中的custom-elements.js
行是麻烦制造者。
蓝色的一击......你能试试吗
$("input[name='property']").live("change", function(e) {
alert("change");
});