我在另一个页面加载事件上编写了一个函数。我想打开新页面并将内容(例如文本框值)写入新打开的页面
function updateUser() {
$("button").on("click", function () {
var code = $(this).attr('id');
$.ajax({
url: '/ajaxExecute.aspx?Fn=GETUSERFORUPDT',
type: 'POST',
context: document.body,
data: 'Code=' + code,
cache: false,
success: function (response) {
if (response != 'undefined') {
window.location = 'AddEditUser.aspx';
$('#txtUserName').val(response.split("|")[0]);
}
}
});
});
}
带有 id 的文本框txtUserName
位于页面中AddEditUser.aspx
并function updateUser()
加载到另一个 .aspx 页面中
我的页面加载但无法获得价值,textbox
因为我能够使用alert()
我参考了这个链接,但仍然不明白