Tenes que cambiar las propiedades con javascript
algo asi (le agregué algunos detalles para resaltar el estado on/off)
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="content-type" content="text/html; charset=utf-8" />
/*<![CDATA[*/
input#texto {
color: #000;
border: solid 1px #000;
}
/*]]>*/
<script type="text/javascript"> //<![CDATA[
function cambiarestado(){
var valor = document.getElementById('texto').readOnly;
if (valor == false){
document.getElementById('texto').readOnly = true;
document.getElementById('texto').style.border = 'solid 1px #666';
document.getElementById('texto').style.color = '#666';
document.getElementById('cambia').value = 'habilitar';
}else{
document.getElementById('texto').readOnly = false;
document.getElementById('texto').style.border = 'solid 1px #000';
document.getElementById('texto').style.color = '#000';
document.getElementById('cambia').value = 'deshabilitar';
}
}
//]]>
<input type="text" id="texto" value="" /> <input type="button" value="deshabilitar" id="cambia" onclick="cambiarestado();" /> <input type="reset" value="borrar" />
Saludos