高手帮忙,在线等,急!!!
有一个checkbox和一个文本框,在checkbox被选中的情况下,这个文本框就具有事先定义好的onblur事件,如果checkbox没有被选中,这个文本框就不具有这个onblur事件。怎么做啊??
<td align= "center " > <INPUT type= "checkbox " id= "CB "/> </td>
<td align= "center ">
<input id= "teachername " type= "text " value= " <%=teachername%> "> </td>
function onblur()
{
}
------解决方案--------------------选中后就注册事件监听器,没有选中则注销事件监听器。