吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 777|回复: 8
收起左侧

[其他原创] 英文单词字母大小写在线转换工具html代码

[复制链接]
小鸡眯眼 发表于 2024-8-26 14:36
这是一个简单而实用的在线大小写转换工具。它允许用户输入任意文本,并提供三种转换选项:转换为全大写、全小写或首字母大写。
QQ截图20240826141443.png
使用这个工具非常简单快捷。用户只需要在输入框中输入想要转换的文本,选择合适的转换类型,然后点击"转换"按钮即可。转换结果会立即显示在输出框中,用户可以直接复制使用。

[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 鼓励转贴优秀软件安全工具和文档!

查看全部评分

本帖被以下淘专辑推荐:

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

 楼主| 小鸡眯眼 发表于 2024-8-26 14:39
这种小工具网上挺多的,自己搞一个省的去找,体验

http://diuta.com/app/zt.html  

大佬有好建议意见可以分享一下
llyaomo 发表于 2024-8-26 15:55
开创者 发表于 2024-8-26 16:01
不错不错,我之前一直用的那个有很大的广告,这个方便了。
 楼主| 小鸡眯眼 发表于 2024-8-26 16:10
llyaomo 发表于 2024-8-26 15:55
这个功能,word上面就有呀。

网上这类在线小工具也不少,只是有的有广告,搜索页麻烦。
 楼主| 小鸡眯眼 发表于 2024-8-26 16:12
开创者 发表于 2024-8-26 16:01
不错不错,我之前一直用的那个有很大的广告,这个方便了。

自己用还是很方便呢,有时候英文标题需要首字母大写,操作简单,自己搞个没广告也清爽。
开创者 发表于 2024-8-26 16:15
小鸡眯眼 发表于 2024-8-26 16:12
自己用还是很方便呢,有时候英文标题需要首字母大写,操作简单,自己搞个没广告也清爽。

是的,我一直也懒。就没搞,你这有现成的,就直接用得了
YQQY 发表于 2024-8-26 16:48
可以的,偶尔会用到
huaidan233 发表于 2024-8-26 18:42
好用,顶贴,感谢楼主
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-12-14 14:41

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表