首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

提交一个没有提交按钮的HTML表单?

一个没有提交按钮的HTML表单可以采用以下方式实现:

代码语言:html
复制
<!DOCTYPE html>
<html lang="zh">
<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;
            background-color: #f2f2f2;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }
        .form-container {
            background-color: #ffffff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            width: 300px;
            margin: 50px auto;
        }
        .form-container h2 {
            text-align: center;
            margin-bottom: 20px;
        }
        input[type="text"], input[type="password"] {
            padding: 10px;
            margin-bottom: 20px;
            border-radius: 5px;
            border: none;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        input[type="submit"] {
            background-color: #4CAF50;
            color: #ffffff;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        input[type="submit"]:hover {
            background-color: #3e8e41;
        }
    </style>
</head>
<body>
    <div class="form-container">
        <h2>登录表单</h2>
        <form action="">
            <label for="username">用户名:</label>
            <input type="text" id="username" name="username" placeholder="请输入用户名">

            <label for="password">密码:</label>
            <input type="password" id="password" name="password" placeholder="请输入密码">

            <input type="submit" value="登录">
        </form>
    </div>
</body>
</html>

这个HTML表单包含了一个用户名和密码输入框,以及一个提交按钮。但是,它没有明显的提交按钮,因为它是隐式的。当用户点击输入框中的文本时,它会被自动提交到指定的URL。

页面内容是否对你有帮助?
有帮助
没帮助

相关·内容

领券