我想显示一个图像,只有当这个人开始在文本字段中输入时.
即
$('#type').keyup(function(){ //show the images });
HTML
图片
showimage.jpg
$('#type').keyup(function(){ $('#image').show(); });
HTML: