我正在開發一個使用HTML和JQuery(無PHP)的應用程序,我有兩個頁面,index.html和register.html。在第一頁(index.html),您被要求輸入卡號,然後點擊提交。當用戶做到這一點時,我移動到第二頁,我有一個隱藏的輸入。HTML&JQuery:將數據從一個頁面移動到第二個
這是代碼,index.html的
<form id="RegisterForm" method="post" data-ajax="false" id="registerCardForm" action="register.html">
<input type="text" id="cardNumberRegField" type="tel" name="cardNumber" class="required number register" minlength="16" maxlength="16" />
<input name="Submit" type="submit" class="button" value="Register"/>
</form>
register.html
所以我的問題我怎麼在第一頁裝載數量隱藏輸入第二頁在頁面完全加載之前?
http://stackoverflow.com/questions/1403888/get-url-parameter-with-jquery –
你可以使用cookies或追加?卡=號的形式 – rsplak
的actiontag你會怎樣把它添加到頁面? – newSpringer