单选框按钮,怎么接收从前一个页面传递过来的值,并选中啊?求高人指点
2个回答
展开全部
不知道你是用什么网页技术,我用的是.net:
aspx:
男:<input type="radio" name="sex" value="1" runat="server" id="nan"/>
女:<input type="radio" name="sex" value="2" runat="server" id="nv"/>
cs:
protected void Page_Load(object sender, EventArgs e)
{
if(!string.IsNullOrEmpty(Request.QueryString["sex"]))
{
string sex = Request.QueryString["sex"].ToString();
if(sex=="1")
{
this.nan.Checked = true;
}
if (sex == "2")
{
this.nv.Checked = true;
}
}
}
aspx:
男:<input type="radio" name="sex" value="1" runat="server" id="nan"/>
女:<input type="radio" name="sex" value="2" runat="server" id="nv"/>
cs:
protected void Page_Load(object sender, EventArgs e)
{
if(!string.IsNullOrEmpty(Request.QueryString["sex"]))
{
string sex = Request.QueryString["sex"].ToString();
if(sex=="1")
{
this.nan.Checked = true;
}
if (sex == "2")
{
this.nv.Checked = true;
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询