我有三个按钮,然后单击其中每个按钮的视频将会改变。
它在桌面上工作正常,但在ipad中却没有。
我的代码是
$('.whitegreenround').click(function(){
var URL = $(this).attr('data-url');
$('#video_container').find('iframe').attr('src',URL);
$('.subcontent-detail').removeClass('active');
$(this).parent().addClass('active');
return false;
});
非常欢迎任何帮助/提示。谢谢。