当前位置: 首页 > 工具软件 > speak.js > 使用案例 >

TcPlayer.js 实现文字朗读

薛俊美
2023-12-01

下载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);
	});
});

 

 类似资料: