弹出提示框要怎么做
我现在有三个TEXTBOX控件,我想如果一个为空就弹出对话框要怎么做
if(???)
{
弹出语句怎么写
}
------解决方案--------------------if(getElementById("xxx"))
{
window.showModalDialog("xxxx.aspx",null,"dialogWidth=820px;dialogHeight=500px;help:no;resizable:yes;status:no;center:yes;");
}