侧边栏壁纸
博主头像
奇楠木语博主等级

行动起来,活在当下

  • 累计撰写 138 篇文章
  • 累计创建 94 个标签
  • 累计收到 1 条评论

目 录CONTENT

文章目录

朗读页面选中的内容

Administrator
2020-01-20 / 0 评论 / 0 点赞 / 77 阅读 / 841 字

来源 : github:netnr

var ssu = {
    init: function () {
        var txt = window.getSelection().toString();
        ssu.speech(txt);
    },
    speech: function (txt) {
        if (!txt || txt.trim() == "") {
            txt = "未选择文字";
        }
        var ws = new window.SpeechSynthesisUtterance(txt);
        window.speechSynthesis.speak(ws);
    }
}
ssu.init();
0

评论区