当我单击 <a> 中的 <button> 时什么也没有发生

时间:2021-04-18 01:20:12

标签: html

我将 <button> 标签放入 <a> 标签内,但是当我点击按钮时什么也没有发生。

我有这个 HTML 代码:

<form>
    <h1>نوع الغرفة </h1>
    <input placeholder="جناح رئاسي , سويت , شاليه "  type="text"> *ضروري
    <h1>عدد الأسرة</h1>
    <input placeholder="2,3,4,1,5 "  type="text">  *ضروري
    <h1>تاريخ الوصول</h1>
    <input placeholder="21/4 , 22/4 "  type="text"> *ضروري
    <h1>ايام الاقامة </h1>
    <input placeholder="يومين , ثلاثة ايام , اربعة ايام , الخ ..."  type="text"> *ضروري
    <h1>الاسم الكريم  </h1>
    <input placeholder="الاسم الكامل "  type="text"> *ضروري
    <h1>كلمة السر الشخصية</h1>
    <input placeholder="الرجاء حفظ الكلمة لانها ضرورية "  type="password"> *ضروري
    <br>
    <hr>
    <a href="indexx.html" target="_blank">
        <button type="submit">Submiit</button>
    </a>
</form>

2 个答案:

答案 0 :(得分:0)

<a href="indexx.html"> <button type="button">Submiit</button></a>

indexx.html 是在同一个文件夹中还是在子文件夹中?

答案 1 :(得分:0)

如果您希望表单提交到 index.html,请将其设置为表单的操作并删除 <a>

<form action="index.html" method="GET" target="_blank">
   <!-- various inputs -->

   <button type="submit">Submiit</button>
</form>