如何才能使表单中请求的答案在提交后显示在 URL 中?

问题描述 投票:0回答:1

我正在使用 VS code 和 127.0.0.1:5500 上的实时服务器来为我可视化代码。 正确填写表格并按下提交按钮后,我没有看到网址发生变化。如果我没有填写所有必需的输入,我也不会看到消息。

******之后就这样开始

<body>
    <h1> <u> Request a Quote</u></h1>
    <form action="." method="GET" >
        <div class="form-row">
            <label> 
                First name:
                <input type=text name="first-name" required >     <label>

*# 
# And end like this:**
# *
 <div class="form-row">
            <button type="button" id="Submit"> Send </button>
            <button type="button" id="clear">Clear</button>
        </div>
    
</body>
</html>



I tried to figure out if it was the form action and method. I do not quite know how I should write that.
forms methods get submit action
1个回答
0
投票

您是否期望当您点击 send 并且输入中包含 Mike 时,URL 会是这样的: http://127.0.0.1:5500/?first-name=Mike

© www.soinside.com 2019 - 2024. All rights reserved.