-3
我有一個文件index.php用戶輸入他的數據(姓名,年齡,州,國家),然後點擊提交按鈕,將他重定向到about.php並在about.php顯示他的信息。如何實現使用jQuery的。我是新的Web開發,這裏是我的代碼:
的index.php使用jquery填充基於另一個網頁的數據的動態網頁
<div class="row">
<div class="col-md-3 no-padding">
<input type="text" id = "name" >
</div>
<div class="col-md-3 no-padding">
<input type="text" id = "age" >
</div>
<div class="col-md-3 no-padding">
<input type="text" id = "state" >
</div>
<div class="col-md-3 no-padding">
<input type="text" id = "country" >
</div>
<a href="about.php">
<button type="submit" class="btn btn-primary center-block col-md-2" id = "submit">Submit</button>
</a>
about.php
<div class="table-responsive">
<table class="table table-bordered" id = "about-table">
<thead>
<tr>
<th>#</th>
<th>name</th>
<th>age</th>
<th>state</th>
<th>country</th>
</tr>
</thead>
<tbody></tbody>
</table>
的script.js(包含在這兩個約.php和index.php)
$("#submit").on("click",function(){
var name = $("#name").val()
var age = $("#age").val()
var state = $("#state").val()
var country = $("#country").val()
var newRow = $("<tr>");
var cols = "";
cols += '<td>' + name +'</td>';
cols += '<td>' + age + '</td>';
cols += '<td>' + state + '</td>';
cols += '<td>' + country + '</td>';
newRow.append(cols);
$("#about-table").append(newRow);
});
請做一些關於如何使用PHP處理表單的基礎研究/學習 –
您無法在客戶端頁面之間傳輸數據,而無需a)解析先前放入數據的url,b)使用cookie或c)使用本地或會話存儲 – Cruiser
如何將數據從index.php傳遞給about.php?我現在正在獲取script.js中的數據如何傳遞這些數據來填充index.php。能否請你幫忙。 –