我将ajax
响应带到成功通话中,之后我想重定向到新的aspx页面,其中所有30 input type text
控件都是他们的。所以我想要的是我想填补他们所有的价值观。那我怎么能实现呢。请建议。
这是我到现在为止所做的事情
function getDataForDashboard(rjSapId) {
$.ajax({
type: "POST",
url: "Dashboard.aspx/GetDashboardDataOnFacId",
data: JSON.stringify({ rjSapId: rjSapId }),
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (response) {
window.location.href = "http://localhost:39800/DashboardData.aspx?Id=" + rjSapId + "";
},
error: function (response) {
alert('Something went wrong..!!');
}
});
}
另一页控件如下: -
<span>Site Type:</span>
<input type="text" id="txtSiteType" />
<br />
<span>Facility Type:</span>
<input type="text" id="txtFacilityType" />
<br />
答案 0 :(得分:1)
您可以通过执行字符串化将所有数据保存在隐藏字段中,或者将其保存在本地存储中,然后在下一页中准备ajax就可以检索它