Hi. Wem meine Frage zu dämlich ist, muss ja nicht antworten.
Ich habe mir jetzt einen ganzen Tag Gedanken darüber gemacht, wie ich ein Formular ohne die "standart" Formularelemente, speziell den Button, ohne die <input> tags hinbekomme.
Die Möglichkeit mit CSS Buttons zu erstellen kennen ja viele bestimmt. Mein Problem ist jetzt, dass ich nicht weiß, wie ich [COLOR=red]ohne "submit"[/COLOR] die Daten des Textfelds zu meinem phpscript bekomme (Gästebuch).
Kuckt euch das einfach mal kurz an, dann versteht man evtl sogar was ich meine
[COLOR=red]<a href="bla.htm"> lala </a>[/COLOR] Das ist sozusagen die entscheidene Zeile. Über einen normalen Link kappts ja nicht, aber ich brauch das [COLOR=red]<a href=""> </a>[/COLOR], wegen dem a:hover des CSS. Geht da evtl was mit JavaScript? Oder was ganz anderes?
Ich würd mich über einen Tip freuen, tüfteln und kniffeln kann ich dann allein. (gegoogelt hab ich wie ein Bekloppter, aber zu dem Thema habsch nix gefunden)
Danke.
Ich habe mir jetzt einen ganzen Tag Gedanken darüber gemacht, wie ich ein Formular ohne die "standart" Formularelemente, speziell den Button, ohne die <input> tags hinbekomme.
Die Möglichkeit mit CSS Buttons zu erstellen kennen ja viele bestimmt. Mein Problem ist jetzt, dass ich nicht weiß, wie ich [COLOR=red]ohne "submit"[/COLOR] die Daten des Textfelds zu meinem phpscript bekomme (Gästebuch).
Kuckt euch das einfach mal kurz an, dann versteht man evtl sogar was ich meine
<html>
<head>
<title>Unbenanntes Dokument</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style>
.text {
border:1px solid black;
background-color:#999;
font:13px tahoma, verdana;
color:#fff;
padding:2px;
width:250px;
height:150px;
}
#button a, #button a:hover {
background:#999;
text-align:center;
font:13px tahoma, verdana;
color:#fff;
text-decoration:none;
}
#button a {
border-top:1px solid #B2B2B2;
border-left:1px solid #B2B2B2;
border-bottom:1px solid #747474;
border-right:1px solid #747474;
}
#button a:hover {
border-top:1px solid #747474;
border-left:1px solid #747474;
border-bottom:1px solid #B2B2B2;
border-right:1px solid #B2B2B2;
}
</style>
</head>
<body bgcolor="#333333">
<div id="button">
<textarea name="text" class="text"></textarea><br><br>
<a href="bla.htm"> lala </a>
</div>
</body>
</html>
<head>
<title>Unbenanntes Dokument</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style>
.text {
border:1px solid black;
background-color:#999;
font:13px tahoma, verdana;
color:#fff;
padding:2px;
width:250px;
height:150px;
}
#button a, #button a:hover {
background:#999;
text-align:center;
font:13px tahoma, verdana;
color:#fff;
text-decoration:none;
}
#button a {
border-top:1px solid #B2B2B2;
border-left:1px solid #B2B2B2;
border-bottom:1px solid #747474;
border-right:1px solid #747474;
}
#button a:hover {
border-top:1px solid #747474;
border-left:1px solid #747474;
border-bottom:1px solid #B2B2B2;
border-right:1px solid #B2B2B2;
}
</style>
</head>
<body bgcolor="#333333">
<div id="button">
<textarea name="text" class="text"></textarea><br><br>
<a href="bla.htm"> lala </a>
</div>
</body>
</html>
Ich würd mich über einen Tip freuen, tüfteln und kniffeln kann ich dann allein. (gegoogelt hab ich wie ein Bekloppter, aber zu dem Thema habsch nix gefunden)
Danke.
Kommentar