$(function(){ initStyle(); var imgUrl = []; $(".news-content img").each(function(){ if($(this).parent()[0].tagName == "A" || $(this).parent().hasClass("video-container")){ $(this).addClass("no-preview-img"); }else{ var s = this.src.split('?')[0]; imgUrl.push(s); } }); $(".news-content img:not('.no-preview-img')").click(function(){ var $this = $(this); index = $(".news-content img:not('.no-preview-img')").index(this); // if(imgUrl.length>0){ previewImage(imgUrl.join(","), index); } }); //语音播报 $(".j-voice").click(function(){ var content = $(".news-content").text(); var voiceState = $(this).data('state'); if(voiceState == 'play'){//正在播放 点击调用暂停播放 pausePlayVoice(); }else if(voiceState == 'pause'){//已暂停 点击调用继续播放 playVoiceAgain(); }else{//未播放/播放完毕 重头播放 if(content){ playVoice(content); } } }); })