使用JavaScript按钮复制的文本将文本格式设置为小写

1sbrub3j  于 2023-05-16  发布在  Java
关注(0)|答案(2)|浏览(181)

我用一个按钮来复制所有的文本从一个“输入文本区”,但我需要的文本是大写和脚本格式的一切小写。
如何使其大写?

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);
}
nukf8bse

nukf8bse1#

可以使用.toLowerCase().toUpperCase()函数将字符串修改为完全小写或大写

let text = "this text is fully lower case"

console.log(text.toUpperCase()) // logs: "THIS TEXT IS FULLY LOWER CASE"
vlf7wbxs

vlf7wbxs2#

你可以试试这个,看看最后一行的编辑:

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.toLocaleLowerCase()); // Add this
}

相关问题