我使用jQuery函数:
$(document).ready(function(){
$("#img").load("loader.php .allcon,",function(){
$(".allcon").attr();
});
});
所以HTML代码输出:
<div class="1">
<div class="2">
<a href="/xxxx/xxxx.html">
</div>
</div>
网址目标输出:“localhost / xxxx / xxxx.html”
有一种方法可以制作网址:http://website.com/xxxx/xxxx.html
答案 0 :(得分:0)
有关.each()的更多信息。
$('a').each(function(i) {
var _o = $(this).attr('href');
$(this).attr('href', 'http://website.com/' + _o;
});