function checkForm(){ var obj = document.getElementById('wordinput'), wordinput = obj.value; if(wordinput){ if(yanzheng(wordinput)){ window.location.href="/bishun/"+wordinput+"_bishun"; }else{ alert('格式错误!'); obj.focus(); } }else{ alert('请输入要查询的内容!'); obj.focus(); } return false; } function yanzheng(e) { return true; // return !!e.match(/[/\u0000-/\u00ff]/) } // url编码 function urlEncode(str) { return (encodeURIComponent(str).replace(/'/g, "%27").replace(/"/g, "%22")); } $("#read").click(function() { var voiceSrc = "https://tts.baidu.com/text2audio?lan=zh&pid=101&ie=UTF-8&text=" + urlEncode($("#ci").html()) + "&spd=4"; $("#voice").attr("src", voiceSrc); $("#voice")[0].play(); });