IE11问题点击(功能()

时间:2014-09-25 13:18:19

标签: jquery internet-explorer

$(document).ready(function(){
  $('#test input[type="radio"]').click(function(){
    $('#test').submit();
  });
});

为什么这个功能在IE11上不起作用?他们的解决方法是解决这个问题吗?

就像在这个帖子中一样:

https://stackoverflow.com/posts/comments/40783358

1 个答案:

答案 0 :(得分:0)

使用此功能,这将起到作用

$(document).on('click','#test input[type="radio"]',function(){
    //your code here
});

希望这会对你有所帮助