Что-нибудь типа такого
Код | <input id="pass" name="MyPasword" type="password" class="xx yy zz" style="font-size:11px; background:#c0c0c0;" value="Hello! World">
<button onclick="replace('pass')">change it</button>
<script> function replace(_id){ var t=document.getElementById(_id); //var inp=t.cloneNode(true); // не работает :-( inp=document.createElement('input'); inp.type="text"; inp.style.cssText=t.style.cssText||''; inp.className=t.className||''; inp.name=t.name||''; inp.id=t.id||''; inp.value=t.value||''; t.parentNode.insertBefore(inp,t); t.parentNode.removeChild(t); } </script>
|
|