input效果:當鼠標在input中輸入文字是改變內部文字效果

主要用到屬性:onpropertychange事件(屬性改變時觸發的事件),oninput屬性(當input有輸入時發生的事件)html

onpropertychange事件是IE專屬事件瀏覽器

oninput屬性兼容非IE瀏覽器this

例如:spa

代碼3d

<input id="Login_username" class="Login_input" name="Login_username" type="text" placeholder=" 輸入用戶名" onpropertychange="this.style.color='black'" oninput="this.style.color='black'">
<input id="Login_pwd" class="Login_input" name="Login_pwd" type="password" placeholder=" 輸入密碼" onpropertychange="this.style.color='black'" oninput="this.style.color='black'">

 

原始樣式:htm

修改前輸入效果:blog

自該後輸入效果:事件

相關文章
相關標籤/搜索