我有一個問題試圖實現這個結果,我需要的幾乎是禁用提交按鈕,直到在輸入字段中輸入文本。我嘗試了一些功能,但沒有結果。請如果你能幫助我,這將是非常感激。如何在輸入字段中輸入文本之前禁用提交按鈕?
HTML標記
<form action="" method="get" id="recipename">
<input type="text" id="name" name="name" class="recipe-name"
value="Have a good name for it? Enter Here"
onfocus="if (this.value == 'Have a good name for it? Enter Here') {this.value = '';}"
onblur="if (this.value == '') {this.value = 'Have a good name for it? Enter Here';}"
/>
<input type="submit" class="submit-name" value="" />
</form>
謝謝提前。
這是我一直在尋找的答案,非常感謝您的幫助。 – Ozzy 2010-09-18 14:59:16
@Ozzy:不客氣 – Topera 2010-09-18 15:03:20