$(document).ready(function(){
$('#test input[type="radio"]').click(function(){
$('#test').submit();
});
});
为什么这个功能在IE11上不起作用?他们的解决方法是解决这个问题吗?
就像在这个帖子中一样:
答案 0 :(得分:0)
使用此功能,这将起到作用
$(document).on('click','#test input[type="radio"]',function(){
//your code here
});
希望这会对你有所帮助