填充数据以控制另一页上的成功响应
Posted
技术标签:
【中文标题】填充数据以控制另一页上的成功响应【英文标题】:Fill Data to control from success response which is on another page 【发布时间】:2018-08-07 00:25:41 【问题描述】:我在成功调用时带来了我的ajax
响应,之后我想重定向到我所有的30 input type text
控件都是他们的新aspx 页面。所以我想要的是我想填充他们的所有值。那我怎么能实现它。请建议。
这是我到目前为止所尝试的
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 />
【问题讨论】:
codeproject.com/Tips/826979/… ? 【参考方案1】:也许您可以通过执行字符串化将所有数据保存在隐藏字段中,或者将其保存在本地存储中,然后在下一页准备好 ajax 时您可以检索它
【讨论】:
以上是关于填充数据以控制另一页上的成功响应的主要内容,如果未能解决你的问题,请参考以下文章
当 TABLE 跨越多个页面时,如何使第一页上的 TFOOT 显示“继续...”?