diff --git a/html/pinyin.html b/html/pinyin.html index ee39d63..d8f1090 100644 --- a/html/pinyin.html +++ b/html/pinyin.html @@ -7,13 +7,14 @@ -
-

拼音翻译

-
-

生日

-
- - +
+

拼音

+
爱发音
+
+

汉字转换拼音

+
+ +
@@ -21,8 +22,8 @@

生日

const { pinyin } = pinyinPro; const elTextareaSrc = document.getElementById('idSrc'); const elTextareaDst = document.getElementById('idDst'); - elTextareaSrc.addEventListener('input', (event)=>{ - elTextareaDst.textContent = pinyin(elTextareaSrc.textContent); + elTextareaSrc.addEventListener('change', (event)=>{ + elTextareaDst.value = pinyin(elTextareaSrc.value); })