Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
<input type="text" ... onFocus="this.style.backgroundColor='#FF0000';">
<style type="text/css">
input.roterhg:link { }
input.roterhg:visited { }
input.roterhg:hover { }
input.roterhg:active { }
input.roterhg:focus { background-color:#FF0000 }
</style>
...
<input type="text" ... class="roterhg">
<input name="name" type="text" style="background:'white'" onClick="this.style.background='red'" onBlur="this.style.background='white'">
Geist hat gesagt.:oder über CSS mithilfe der Pseudoformatierung element:focus:
hth,PHP:<style type="text/css"> input.roterhg:link { } input.roterhg:visited { } input.roterhg:hover { } input.roterhg:active { } input.roterhg:focus { background-color:#FF0000 } </style> ... <input type="text" ... class="roterhg">
Geist
Die Variante die du da gequotet hast ist doch schon die Version ohne JS. Für mich sieht das jedenfalls nach CSS aus (<style type="text/css">)Original geschrieben von hookx
Hallo,
leider ist diese Variante nciht gut. Funktioniert nur bei NICHT-InternetExplorer-Browsern.
Gibt es da keine andere Variante, die ohne JS funktioniert?
Gruß
hook