好友
阅读权限10
听众
最后登录1970-1-1
|
小鸡眯眼
发表于 2024-8-26 14:36
这是一个简单而实用的在线大小写转换工具。它允许用户输入任意文本,并提供三种转换选项:转换为全大写、全小写或首字母大写。
使用这个工具非常简单快捷。用户只需要在输入框中输入想要转换的文本,选择合适的转换类型,然后点击"转换"按钮即可。转换结果会立即显示在输出框中,用户可以直接复制使用。
[Asm] 纯文本查看 复制代码 <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>英文字母大小写在线转换工具-丢塔游戏网</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
}
h1 {
text-align: center;
}
.container {
max-width: 600px;
margin: 0 auto;
}
.input-section,
.output-section {
margin-bottom: 20px;
}
label {
display: block;
margin-bottom: 5px;
}
textarea {
width: 100%;
height: 150px;
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 4px;
}
select {
width: 100%;
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 4px;
}
button {
display: block;
width: 100%;
padding: 10px;
font-size: 16px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
</style>
</head>
<body>
<h1>英文字母大小写在线转换工具</h1>
<div class="container">
<div class="input-section">
<label for="input-text">输入文本:</label>
<textarea id="input-text"></textarea>
</div>
<div class="conversion-section">
<label for="conversion-type">选择转换类型:</label>
<select id="conversion-type">
<option value="uppercase">转换为大写</option>
<option value="lowercase">转换为小写</option>
<option value="titlecase">转换为首字母大写</option>
</select>
<button id="convert-button">转换</button>
</div>
<div class="output-section">
<label for="output-text">转换结果:</label>
<textarea id="output-text" readonly></textarea>
</div>
</div>
<script>
const inputText = document.getElementById('input-text');
const conversionType = document.getElementById('conversion-type');
const convertButton = document.getElementById('convert-button');
const outputText = document.getElementById('output-text');
convertButton.addEventListener('click', () => {
const input = inputText.value;
const type = conversionType.value;
let output;
switch (type) {
case 'uppercase':
output = input.toUpperCase();
break;
case 'lowercase':
output = input.toLowerCase();
break;
case 'titlecase':
output = input.replace(/\b\w/g, (char) => char.toUpperCase());
break;
default:
output = input;
}
outputText.value = output;
});
</script>
</body>
</html>
直接保存为html代码就可以直接使用了。
最近翻译外文用到这个小工具,感觉用处还可以。
|
免费评分
-
参与人数 3 | 吾爱币 +7 |
热心值 +3 |
收起
理由
|
苏紫方璇
| + 5 |
+ 1 |
欢迎分析讨论交流,吾爱破解论坛有你更精彩! |
SAPLU
| + 1 |
+ 1 |
谢谢@Thanks! |
kiwo
| + 1 |
+ 1 |
鼓励转贴优秀软件安全工具和文档! |
查看全部评分
|
发帖前要善用【论坛搜索】功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。 |
|
|
|
|