在打字时使用jquery显示一些东西?

时间:2010-11-14 17:56:09

标签: jquery html css image input

我想要显示一个图像,只有当这个人开始在文本字段中输入时才会显示。

$('#type').keyup(function(){
//show the images
    });

HTML

<input type="text" name="type" id="type">

<div id="showimage"></div>

图像

showimage.jpg

1 个答案:

答案 0 :(得分:11)

jquery的:

$('#type').keyup(function(){
   $('#image').show();
});

HTML:

<img id="image" src="showimage.jpg" style="display: none"/>