我想要显示一个图像,只有当这个人开始在文本字段中输入时才会显示。
即
$('#type').keyup(function(){
//show the images
});
HTML
<input type="text" name="type" id="type">
<div id="showimage"></div>
图像
showimage.jpg
答案 0 :(得分:11)
jquery的:
$('#type').keyup(function(){
$('#image').show();
});
HTML:
<img id="image" src="showimage.jpg" style="display: none"/>