我需要根據文本值更改輸入class
。當value
爲空時,它應該是默認值,當有value
時,它應該將類更改爲inputtext
。如何根據輸入文字更改班級名稱
<style>
.inputnotext{ background:#ddd; }
.inputtext{ background:transparent } /* when their is text */
</style>
<form>
<input class="inputnotext" type="text" name="firstname" /><br />
<input class="inputnotext" type="text" name="lastname" />
</form>
<script>
/* script to write ??? */
</script>
你到目前爲止嘗試過什麼?堆棧溢出是爲了幫助修復錯誤和問題,而不是爲您編寫代碼。 –
你使用jQuery或任何其他庫嗎? – Variant