2017-01-07 12 views
0

jQuery로 이름 및 이메일과 같은 세부 정보가있는 양식을 작성하려고하는데 문제가 발생했습니다.jQuery로 양식 작성하기

<form action="/shipping" method="post" novalidate=""> 
    <div class="linked input_group"> 
    <p class="input text span_half"> 
     <label for="buyer_first_name">First name</label> 
     <input type="text" name="buyer_first_name" id="buyer_first_name" value=""> 
    </p> 
    <p class="input text span_half"> 
     <label for="buyer_last_name">Last name</label> 
     <input type="text" name="buyer_last_name" id="buyer_last_name" value=""> 
    </p> 
    </div> 
    <div class="input_group"> 
    <p class="input text"> 
     <label for="buyer_email">Email address</label> 
     <input type="email" name="buyer_email" id="buyer_email" value=""> 
    </p> 
    </div> 
</form> 

나는 아래를 사용할 수 있다고 생각하고 몇 가지 변형을 시도했지만 여전히 작동하지 않습니다.

$("#buyer_first_name").val('dave smith'); 

도움이 필요하십니까? 감사합니다

+3

코드는 잘 작동 : https://jsfiddle.net/9w8nb3qy/. document.ready 핸들러에서 코드를 실행하고 jquery를 제대로로드했는지 확인하십시오. 또한 콘솔에서 오류를 확인하십시오. –

답변

0

내 생각은 DOM이 조작을위한 준비가되기 전에 당신이 jQuery 코드를 실행하는 것이 있습니다 : https://jsfiddle.net/fyb4xkvj/1/

$(document).ready(function() { 
    $("#buyer_first_name").val('dave smith'); 
}); 
0

당신의 코드는 한 JQuery와 실제로로드로 작동합니다.

<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script> 

https://jsfiddle.net/u65k9mzp/