我創建了一個名稱,電子郵件,電話字段的表單。成功提交表單後在Google上重定向
<div class="col-md-4 col-md-offset-4 my">
<form role="form">
<div class="form-group">
<label for="contact_name">Name</label>
<input class="form-control" id="contact_name" name="contact_name" required="true" type="text"/>
</div>
<div class="form-group">
<label for="email_from">Email address</label>
<input class="form-control" id="email_from" name="email_from" type="email"/>
</div>
<div class="form-group">
<label for="phone">Phone No</label>
<input class="form-control" id="pnone" name="phone" type="text"/>
</div>
<button class="btn btn-primary center-block" style="width: 35%;" type="submit">Submit</button>
</form>
</div
我想要動作和onsubmit事件。 行動是提交我的表單和onsubmit成功submited後重定向的地方。 成功提交後,我想重定向到Google。
「對谷歌重定向」?詳細解釋。 –
用代碼更新問題,你這樣做了什麼.. – shas
你是否在clik提交或保存數據後重定向?請詳細解釋 –