textarea-Feld erzeugen über radio

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • textarea-Feld erzeugen über radio

    Hallo,

    nachdem ich ein radio - button angeklickt habe, möchte ich ein komplettes textarea erzeugen. Wie man die Werte eines textarea-Feldes ändert ist klar, nur wie erzeuge ich ein komplettes Feld? mit document.write ?

    <INPUT name=antwort type=radio value='Annahme' onClick="document.all.voila.style.backgroundColor='#FFCC00'">

  • #2
    ... Nachtrag:

    das radio-button soll erhalten bleiben und das textarea - Feld soll danach erscheinen.

    Kommentar


    • #3
      spiel damit mal rum:
      Code:
      <html>
      <head>
      </head>
      
      <script type="text/javascript">
      function show(breite, hoehe)
      {	
      	document.test.area.style.width=breite + "px";
      	document.test.area.style.height=hoehe + "px";
      }
      </script>
      
      <body>	
      <form name="test">
      <input type=radio value=1 name="anaus" onclick="show(200,100)">an |
      <input type=radio value=0 name="anaus" onclick="show(0,0)">aus
      <textarea name="area" style="width:0px; height:0px;"></textarea>
      </form>
      </body>
      </html>
      Kissolino.com

      Kommentar

      Lädt...
      X