当用户点击输入字段时,我想从服务器中提取图像(不预先加载图像)。
我发现以下代码在输入处于焦点时显示跨度中的文本,但是如何更改它以请求图像?
<!DOCTYPE html>
<html>
<head>
<style>span {display:none;}</style>
<script type="text/javascript" src="scripts/jquery-1.3.2.min.js"></script>
</head>
<body>
<p><input type="text" /> <span>focus fire</span></p>
<script>
$("input").focus(function () {
$(this).next("span").css('display','inline').fadeOut(1000);
});
</script>
</body>
</html>
由于
答案 0 :(得分:0)
删除范围,然后添加div,然后只更新方法
$("input").focus(function () { $(this).next("div").html('<img src="location to image" />'); });