dialog弹出层插件
最近想使dialog插件来做项目!弹出窗体!现在我想在页面上有个button服务器控件的!点一下它从数据库读出来赋值到弹出窗体内的一个TextBox控件里!
要怎么实现啊 --------------------编程问答-------------------- --------------------编程问答-------------------- document.getElementById("你的层id").style.display="";(初始你的层为display:none)
document.getElementById("TextBoxID").value="你得到的值"; --------------------编程问答-------------------- document.getElementById("你的层id").style.display="";(初始你的层为display:none)
document.getElementById("TextBoxID").value="你得到的值"; --------------------编程问答-------------------- http://www.caixw.com/public/uploads/demo/jquery/dialog/
也可使用jwindow
如 function OpenWindow(id, width, height) {
var p = document.getElementById("<%=hf_Id.ClientID %>").value;
var url = "unit_Add.aspx?Id=" + id + "&pId=" + p;
OpenJWindow('#openwin', url, width, height, EditClosed);
}
function SetTitle(url) {
var obj = document.getElementById("winTitle");
if (url.lastIndexOf("Id") > 0) {
obj.innerHTML = "编辑";
return;
}
obj.innerHTML = "新增";
}
function EditClosed(result) {
if (result == "0") return;
document.getElementById("<%=LinkButton1.ClientID %>").click();
return false;
}
补充:.NET技术 , ASP.NET