関数を使用せずにこれら 2 つの効果を実現したいのですが、構文はありますか?
onkeypress="this.value=(this.value=='Password')?'' : this.value"
onkeypress="this.type='password'"
関数を使用せずにこれら 2 つの効果を実現したいのですが、構文はありますか?
onkeypress="this.value=(this.value=='Password')?'' : this.value"
onkeypress="this.type='password'"
<input type="password" placeholder="Password">
あなたがやろうとしていることにより適しています。ただし、質問に答えるには、両方のステートメントを同じハンドラーに入れるだけです。
onkeypress="if (this.value=='Password') this.value = ''; this.type = 'password';"
入力要素の変更を許可しないInternet Explorer で問題が発生することに注意してください。この回答type
も参照してください。