我想更改文本框中图像的可见性。当我选择文本框“搜索”时,占位符变得不可见。你可以用里面的图片做同样的事情吗?
编码:
<div id="ricerca">
<form >
<input type="text" class="ricerca" value="Search" onblur="if (this.value == '') this.value ='Search';" onclick="if (this.value == 'Search') this.value ='';" >
<input type="submit" id="lente" class="lente" value="show" style="border:none;">
</form>
</div>