我的代码是
function EmploySearch() {
pageNumChange(document.all('<%=hfPageNum.ClientID %>'));
var ddl = document.getElementById("ddlEmploy");
function EmploySearch() {
pageNumChange(document.all('<%=hfPageNum.ClientID %>'));
var ddl = document.getElementById("ddlEmploy");
var Index = ddl.selectedindex;
var Text = ddl.options[Index].text;
if (Text == "无任何合同") {
document.getElementById("lblBegin").style.display = 'none';
document.getElementById("txtBegin").style.display = 'none';
document.getElementById("lblEnd").style.display = 'none';
document.getElementById("txtEnd").style.display = 'none';
}
}
这个dropdownlist是写在ajax里面的无刷新,我在ddl中写一个onchange事件,可是这个上面的ddl就是一直找不到对象,为什么啊!!
求高手知道下,感激不尽
你确定客户端的id是:ddlEmploy ??
你嵌套母版页啦