数据库拉出来的内容全部是
<img alt="1" src="135.jpg" />
<img alt="2" src="230.jpg" />
<img alt="3" src="333.jpg" />
<img alt="4" src="427.jpg" />
<img alt="5" src="530.jpg" />
jquery这么写
$(document).ready(function(){
$("img").before("<a data-lightbox='roadtrip' href='"+$(this).attr("src")+"'>");
$("img").after(</a>");
无法实现目标:
<a data-lightbox='roadtrip' href="135.jpg"><img alt="1" src="135.jpg" /></a>
<a data-lightbox='roadtrip' href="230.jpg"><img alt="2" src="230.jpg" /></a>
<a data-lightbox='roadtrip' href="333.jpg"><img alt="3" src="333.jpg" /> </a>
<a data-lightbox='roadtrip' href="427.jpg"><img alt="4" src="427.jpg" /></a>
<a data-lightbox='roadtrip' href="530.jpg"><img alt="5" src="530.jpg" /></a>
是想抓取img实现相册浏览方式,上例是想通过jquery插件实现,是否还有其他方式实现我的目标?
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script src="js/jquery-1.10.2.min.js"></script>
<script src="js/lightbox-2.6.min.js"></script>
<link href="css/lightbox.css" rel="stylesheet" />
<script language="javascript" type="text/javascript">
$(document).ready(function(){
$("img").each(function(){
$(this).wrap(function(){
return "<a data-lightbox=\"roadtrip\" href=\""+$(this).attr("src")+"\">";
});
$("button").click(function(){
$("img:first").click();
});
});
});
</script>
</head>
<body>
<p><button >test</button></p>
<div class="r3">
<img class="alignleft size-full wp-image-1796" alt="1" src="135.jpg" width="696" height="891" />
<img class="alignleft size-full wp-image-1797" alt="2" src="230.jpg" width="696" height="1015" />
<img class="alignleft size-full wp-image-1798" alt="3" src="333.jpg" width="696" height="981" />
<img class="alignleft size-full wp-image-1799" alt="4" src="427.jpg" width="696" height="1013" />
<img class="alignleft size-full wp-image-1800" alt="5" src="530.jpg" width="696" height="984" />
</div>
</body>
</html>
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。