前臺ajax發生請求
$.ajax({
type: 'POST',
async: "false",
url: '../edit.aspx',
dataType: "html",
data: { "start": start },
success: function (msg) {
},
Error: function (err) {
}
})
},
后臺aspx頁面接收資料
string start = Request.Form["start"];
title.Text = start;
art.dailog打開頁面后title沒有顯示資料。
art.dialog.open(("edit.aspx"), {
lock: true,
title: '新建事件',
width: 550,
height: 650,
ok: function () {
this.title('提交中…');
},
cancelValue: '取消',
cancel: function () {
alert('你點了取消按鈕')
},
}),
轉載請註明出處,本文鏈接:https://www.uj5u.com/qianduan/121903.html
標籤:JavaScript
下一篇:js dom 的常用屬性和方法
