我所拥有的是一个搜索栏和一个图像作为submit
按钮。submit
我希望按钮的不透明度0.5
处于正常状态,并且1.0
当搜索栏处于打开状态时:focus
。
这是我的 HTML:
<form id='searchThis' action='/search' method='get' style='display: inline;'>
<input id='searchBox' name='q' onblur='if(this.value=='')this.value=this.defaultValue;' onfocus='if(this.value==this.defaultValue)this.value='';' style='display:inline;font-family:Segoe UI, Microsoft Tai Le, trebuchet MS,'lucida grande';width: 155px;color:#636363;' type='text' value='Search' vinput=''/>
<input id='submitsearch' alt='Search' height='20px' src='http://1.bp.blogspot.com/-Ab4nALwSEdw/T4LI1pym1LI/AAAAAAAABBA/_oQltx3svas/s320/search.png' style='display:inline; padding-left: 10px; margin-top:1px; position: absolute; opacity:0.5;' title='Search' type='image' width='20px'/>
</form>
但我不知道我应该使用 CSS 还是 Javascript,而且我也不擅长。
谁能帮我吗?