Also ich habe vor :
wenn in einem formular ein select umgestellt wird, das in einem textfeld eine bestimmte text berecih entfertn / hinzugefügt wird.
Mein Ansatz:
Code
function remPHP() {
if (document.getElementsByName("name")[0].lastchild.selected == "selected") {
var val = document.getElementsByName("DirectoryIndex").getAttribute("value");
var valnew = val.replace(/index.phpsindex.php4sindex.php3/, "");
document.getElementsByName("DirectoryIndex").setAttribute("value", valnew);
}
}
<form method="POST" action="">
<div align="center"><a><font size="6" face="Times New Roman">Neue Domain anlegen</font></a></div>
<table border="1" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="50%"><a>Soll PHP zur Verfügung stehen</a></td>
<td width="50%">
<select size="1" name="php" onChange="remPHP()">
<option value="1" selected>Ja</option>
<option value="0" >Nein</option>
</select></td>
</tr>
<tr>
<td width="50%">Soll Per zur Verfügung stehen</a></td>
<td width="50%">
<select size="1" name="perl">
<option value="1">Ja</option>
<option value="0" selected>Nein</option>
</select></td>
</tr>
<tr>
<td width="50%">Diese Dateien anzeigen falls sie sich im Ordner befinden</td>
<td width="50%">
<input type="text" name="DirectoryIndex" size="50" maxlength="254" value="index.html index.htm index.php index.php4 index.php3"></td>
</tr>
<tr>
<td width="100%" colspan="2">
<a>Es wird automatisch bei Deaktivierung von PHP "index.php
index.php4 index.php3" entfernt und bei Aktivierung von Perl "index.pl"
hinzugefügt.</a>
</td>
</tr>
</table>
</form>
Alles anzeigen
Und das ganze soll auch mit dme perl buttom funktionieren!!!