2016-03-11 86 views
-4

我創建了一個名稱,電子郵件,電話字段的表單。成功提交表單後在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。

+0

「對谷歌重定向」?詳細解釋。 –

+0

用代碼更新問題,你這樣做了什麼.. – shas

+0

你是否在clik提交或保存數據後重定向?請詳細解釋 –

回答

0
.... 
    document.formNameGoesHere.submit(); 
    window.location = "http://www.google.com"; 
}); 
+0

你需要解釋它是如何工作的以及在哪裏放置它;該問題被標記爲JS,但作者可能不知道如何處理它。另外,我不確定這會起作用,因爲'submit()'操作可能會在更改位置之前重定向到另一個頁面。 –

0

試試這個

$(document).ready(function(){ 
    $(".btn").click(function(){ 
     $(this).closest('form').submit(); 
     window.location="www.google.com"; 
    }) 
})