在js和html标签中input onfocus的不同用法

在html标签中:

<input type="image" src="..."  onFocus="src='  ' " onblur="src=' ...' " >

<input type="image"  src="... "   onFocus="this.style.backgroundImage='url(...)'" >

<input type="button"   onFocus="this.style.border='green solid 2px'" onblur="this.style.border=''">


在js中添加标签:

<input type='password'  placeholder='Enter Password'  onfocus='this.style.backgroundImage=\"url(...)\"'  onblur='this.style.backgroundImage=\"url(...)\"'/>\:




你可能感兴趣的:(JavaScript,html)