我用一个按钮来复制所有的文本从一个“输入文本区”,但我需要的文本是大写和脚本格式的一切小写。
如何使其大写?
function myFunction() {
// Get the text field
var copyText = document.getElementById("myInput");
// Select the text field
copyText.select();
copyText.setSelectionRange(0, 99999); // For mobile devices
// Copy the text inside the text field
navigator.clipboard.writeText(copyText.value);
}
2条答案
按热度按时间nukf8bse1#
可以使用
.toLowerCase()
和.toUpperCase()
函数将字符串修改为完全小写或大写vlf7wbxs2#
你可以试试这个,看看最后一行的编辑: