下载Tcplayer.js,网上搜索下载,不能上传了
html代码
<textarea id="langdu" style="width: 1200px;height: 500px;margin: 0 auto;float: left;" x-webkit-speech></textarea>
js代码
$(function(){
$("#langdu").blur(function(){
var str = $("#langdu").val();
var utterThis = new window.SpeechSynthesisUtterance(str);
window.speechSynthesis.speak(utterThis);
});
});