我有一個簡單的HTML表單即如何在html中更改輸入類型的值?
<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post" target="_top" id="registration-form">
<input type="text" class="form-control" name="form-reg-fullname" data-form-field="Name" id="form-reg-fullname">
<input type="hidden" name="return" value=""/>
</form>
在
<script>
標籤
我做的驗證和不斷變化的價值迴歸:
<script>
$('#registration-form').submit(function() {
var fname = $.trim($('#form-reg-fullname').val());
$("#return").val("http://localhost:9000/app/fname");
});
</script>
驗證是成功的工作,同時提交的形式,但我得到空值在return
input type
。我怎樣才能使它工作?