suchen

Heim  >  Fragen und Antworten  >  Hauptteil

Können unterschiedliche Tasteneingaben neue Seiten öffnen?

<form id="signup">
  <div class="row">
    <div class="col-xs-12 col-sm-6">
      <div class="form-group">

        <input type="text" class="form-control" id="first_name" placeholder="First Name" required data-validation-required-message="Please enter your name." autocomplete="off">
        <p class="help-block text-danger"></p>
      </div>
    </div>
    <div class="col-xs-12 col-sm-6">
      <div class="form-group">

        <input type="text" class="form-control" id="last_name" placeholder="Last Name" required data-validation-required-message="Please enter your name." autocomplete="off">
        <p class="help-block text-danger"></p>
      </div>
    </div>
  </div>
  <div class="form-group">

    <input type="email" class="form-control" id="email" placeholder="Your Email" required data-validation-required-message="Please enter your email address." autocomplete="off">
    <p class="help-block text-danger"></p>
  </div>
  <div class="form-group">

    <input type="tel" class="form-control" id="phone" placeholder="Your Phone" required data-validation-required-message="Please enter your phone number." autocomplete="off">
    <p class="help-block text-danger"></p>
  </div>
  <div class="form-group">

    <input type="addr" class="form-control" id="address" placeholder="Address" required data-validation-required-message="Please enter your phone number." autocomplete="off">
    <p class="help-block text-danger"></p>
  </div>
  <div class="form-group">

    <input type="password" class="form-control" id="password" placeholder="Password" required data-validation-required-message="Please enter your password" autocomplete="off">
    <p class="help-block text-danger"></p>
  </div>
  <div class="form-group">

    <input type="password" class="form-control" id="password" placeholder="Confirm Password" required data-validation-required-message="Please enter your password" autocomplete="off">
    <p class="help-block text-danger"></p>
  </div>
  <div class="mrgn-30-top">
    <button type="submit" class="btn btn-larger btn-block" onclick="rdt()">
                  Sign up as customer
                </button>
  </div>

  <div class="mrgn-30-top">
    <button type="submit" class="btn btn-larger btn-block">
                    Sign up as Shop Owner
                  </button>
  </div>

  <div class="redirect">
    <p>Already have an account? <a href="file:///Users/megatron/Documents/Project/The_Isle_of_Kitchens/Login/login.html">Login Here</a></p>
  </div>
</form>

Wenn der Benutzer auf die Schaltfläche „Als Shop-Inhaber registrieren“ klickt, möchte ich zu einer neuen HTML-Seite gehen. Ich verwende Tags in diesem Abschnitt, aber es funktioniert nicht. Wie würde ich Tags in diesem Abschnitt verwenden oder gibt es eine andere Möglichkeit, das Problem zu beheben? Bitte schlagen Sie mir einen Weg zur Lösung des Problems vor.

P粉450079266P粉450079266231 Tage vor399

Antworte allen(2)Ich werde antworten

  • P粉515066518

    P粉5150665182024-04-03 09:46:16

    使用 target="_blank"in 作为 <a> 标记的属性将在新选项卡中打开链接。

    示例在这里。 https://www.w3schools.com/tags/att_a_target.asp

    Antwort
    0
  • P粉834840856

    P粉8348408562024-04-03 09:23:37

    查看可用于 <form>不同类型的属性元素。

    特别是:

    • target 将很有用,因为它指定了 from 响应将返回到的位置。 (通常这是您所在的页面:target="_self"
    • 如果您想指定不同的端点来将 form 数据提交到,action 将会很有帮助

    Antwort
    0
  • StornierenAntwort