我想和input textbox
警報內容,但它不能正常工作任何人可以幫助我嗎?獲得輸入框的值jQuery中
$(document).ready(function() {
var phoneField = $("#PhoneField").val();
$("#SendPhone").click(function() {
alert(phoneField);
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<fieldset>
<h2 class="fs-title">Enter Your Number</h2>
<h3 class="fs-subtitle">This is step 1</h3>
<input type="text" name="email" placeholder="Phone number" id="PhoneField" />
<input type="button" name="next" class="next action-button" value="Next" id="SendPhone" />
</fieldset>
爲什麼你想要得到的值時,頁面加載? –
將'var phoneField ...'行移入您的點擊處理程序。 – DarthJDG