您的位置:首页 > Web前端 > JavaScript

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

2013-05-27 08:12 656 查看
在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(...)\"'/>\:
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: