2017-05-18 14 views
0

私が提供するSEOサービスの下にボタンを置いて、そのボタンをクリックすると、それらを下のコンタクトフォームに導き、「サービス必要」エリアに"SEO"これは可能ですか?ボタンで連絡フォームの一部を記入してください

<!-- MY FORM THAT I WANT FILLED OUT AFTER THEY CLICK A BUTTON --> 
 

 
<form id="contact-form" class="form" action="contact.php" method="POST" role="form"> 
 
       <div class="form-group"> 
 
        <label class="form-label" for="name"></label> 
 
        <input type="text" class="form-control" id="name" name="name" placeholder="Your Name" tabindex="1" required> 
 
       </div>        
 
       <div class="form-group"> 
 
        <label class="form-label" for="email"></label> 
 
        <input type="email" class="form-control" id="email" name="email" data-constraints="@NotEmpty @Email" placeholder="Your Email" tabindex="2" required> 
 
       </div>        
 
       <div class="form-group"> 
 
        <label class="form-label" for="subject"></label> 
 
        <input type="text" class="form-control" id="subject" name="subject" placeholder="Service Needed" tabindex="3"> 
 
       </div>        
 
       <div class="form-group"> 
 
        <label class="form-label" for="comments"></label> 
 
        <textarea rows="5" cols="50" name="comments" class="form-control" id="comments" placeholder="Message..." tabindex="4" required></textarea>         
 
       </div> 
 
       <div class="text-center"> 
 
        <button type="submit" value="send" class="btn btn-start-order">Send Message</button> 
 
       </div> 
 
      </form> 
 

 

 

 
<!-- BUTTON I USE --> 
 
<a href="index.html#contact" class="btn btn-default">get a quote</a>

+0

私は少し混乱してい – ejb122

+0

彼らは申し訳ありません削除。これはあなたに人を誘導したい連絡フォームです。しかし、コードの残りの部分はどこにありますか。 – trav

+0

この連絡先フォームはページに埋め込まれていますか、それとも別のページにありますか?あなたはPHPのようなサーバー側言語を使用していますか?私は@travに同意する、もっと見る必要がある。 –

答えて

1
$.ready(function(){ 
    $('#myButtonID').click(function(){ 
     $('#subject').val('SEO'); 
     event.preventDefault(); // prevent default anchor tag action otherwise animation wont work 
     $('html, body').animate({scrollTop: $('#contact-form').offset().top}, 300 /*duration*/); 
     return false; 
    }); 

}); 
関連する問題