我想给文档里的图片都加上链接 用jquery怎么做
1个回答
展开全部
<script type="text/javascript">
// 首先给文档的最外层容器加一个ID
window.onload = function() {
$("#ID").find("img").each(function() {
var that = $(this);
var $a = document.createElement("a");
$a.href = that.attr("src");
$a.target = "_blank";
that.wrapAll($a);
})
}
</script>
// 首先给文档的最外层容器加一个ID
window.onload = function() {
$("#ID").find("img").each(function() {
var that = $(this);
var $a = document.createElement("a");
$a.href = that.attr("src");
$a.target = "_blank";
that.wrapAll($a);
})
}
</script>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询