js 汉字获取首字母,汉字转拼音

2021-2-9 Jon js+jquery+ajax

JS 地址

https://gitee.com/yinuocode/convert-pinyin

功能包括

  • 根据字符串返回所有字符串首字母
  • 根据字符串返回字符串第一个字符的首字母
  • 根据字符串返回所有字符串全拼
  • (字符串可以是汉字、数字、字母)

getChineseStrPY 函数介绍

  1. 参数
    str 必须
    传入的字符串
    type 可选
    • 不传: 返回所有字符的首字母
    • irst: 返回第一个字符的首字母
    • all: 返回每一个字符的拼音全拼
  2. 返回值
    处理后的字符串

使用

  1. html 中引入 convert-pinyin.js
  2. getChineseStrPY('需要处理的字符串');

html test 代码

   html    54行
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>获取汉字首字母 js 插件使用</title>
</head>
<body>
  <div>
    <div>获取字符串第一个字符的首字母</div></div>
    <input type="text" onblur="getInitial1(this.value)">
    <button>获取首字母</button>
    <div id="txt1"></div>
    <div style="font-size: 12px; color: #999; margin-top: 20px;">多个字母开头的多音字会显示多个字母</div>
  </div>
  <div>
    <div>获取字符串每个字符的首字母</div></div>
    <input type="text" onblur="getInitial2(this.value)">
    <button>获取首字母</button>
    <div id="txt2"></div>
    <div style="font-size: 12px; color: #999; margin-top: 20px;">多个字母开头的多音字会显示多个字母</div>
  </div>
  <div>
    <div>获取字符串拼音</div></div>
    <input type="text" onblur="getInitial3(this.value)">
    <button>获取首字母</button>
    <div id="txt3"></div>
    <div style="font-size: 12px; color: #999; margin-top: 20px;">多个字母开头的多音字会显示多个字母</div>
  </div>

  <script src="./convert-pinyin.js"></script>
  <script>
    // 返回所有字符的首字母
    function getInitial1(str) {
      let py = getChineseStrPY(str);
      console.log(py);
      document.getElementById('txt1').textContent = py;
    }
    function getInitial2(str) {
      // 返回第一个字符的首字母
      let py = getChineseStrPY(str, 'first');
      console.log(py);
      document.getElementById('txt2').textContent = py;
    }
    // 返回每一个字符的拼音全拼
    function getInitial3(str) {
      let py = getChineseStrPY(str, 'all');
      console.log(py);
      document.getElementById('txt3').textContent = py;
    }
  </script>
</body>
</html>

标签: js

分享这篇文章
赞助鼓励:如果觉得内容对您有所帮助,您可以支付宝(左)或微信(右):

声明:如无特殊注明,所有博客文章版权皆属于作者,转载使用时请注明出处。谢谢!

评论:

TJEYOmVGhjkgQn
2023-12-16 08:07
RwYfKjesAyik

发表评论:

皖ICP备15010162号-1 ©2015-2022 知向前端
qq:1614245331 邮箱:13515678147@163.com Powered by emlog sitemap