当有用户点击链接时,是否有人可以告诉我如何修改以下代码以将图片显示为div?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Test</title>
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript">
$("a").click(function() {
$("#imageBox").html("<img src=' + this.href + '>");
});
</script>
</head>
<body>
<a href="background.jpg" class="sideLoad">Link to image 1</a>
<a href="background.jpg" class="sideLoad">Link to image 2</a>
<div id="imageBox"></div>
</body>
</html>
答案 0 :(得分:3)
您的代码应位于.ready
$(function(){
$("a.my-class").click(function(e) {
e.preventDefault();
$("#imageBox").html('<img src="' + this.href + '" />');
});
})
这将启用a
元素的功能,其中myclass
类,其他元素将正常运行
演示:Fiddle
答案 1 :(得分:0)
你走在正确的轨道上。基本上有两种方法:1)将<img>
标签添加到div,或2)使用JS / css更改背景图像。
更改:
$("#imageBox").html("<img src=' + this.href + '>");
要:
$("#imageBox").html("<img src=\"" + this.href + "\">");
你的报价错了。