IE下关于用js控制disabled和readonly的问题
大家好,我是个新手,想请教一个问题:一个input框默认是disabled 并且是readonly,后面跟一个按钮,点击弹出对话框提示“是否要修改?”,点击确定后这个input框可以正常输入
我的代码是:
<html>
<form enctype="multipart/form-data" action="sign.php" method="post" name="moblie_act_form" id="moblie_act_form" >
<input type="text" class="input" id="mobile" name="mobile" value="{$mobile}" readonly="true" disabled="disabled">
<input type="button" value="修改" onClick="modify_phone()">
</form>
</html>
<script language="JavaScript">
function modify_phone(){
if(confirm("您确定要修改您的手机号码吗?")){
document.moblie_act_form.mobile.readOnly = false;
document.moblie_act_form.mobile.disabled = false;
}
return true;
}
</script>
可是现在在IE下没有任何反映,想让大家给我看看是哪的问题~~谢谢!