我有div,其中我添加了5个文件,使用appendTo,现在我想得到所有这些文件的src。我如何使用jQuery获取它。我可以使用.get()吗?
由于 让
[编辑]
<div id="some">
<img src="jquery_book.jpg"><a href="jquery.pdf">JQuery Book</a>
</div>
我需要src和href。
答案 0 :(得分:2)
像
这样的东西var arrsource = new Array();
$("#yourdivid a").each(function(){
arrSource.push ( $(this).attr("href") );
});
不使用数组
$("#yourdivid a").each(function(){
var currentElemSource = $(this).attr("href");
// write your code here
});
<强> 修改 强>
$("#some a").each(function(){
var currentElem = $(this);
var imageSource = currentElem.prev().attr("src");
var path = currentElem.attr("href");
});
我假设您正在使用锚标记,并且您已在href中获得路径。
答案 1 :(得分:1)
不确定文件的含义,但您可以像这样获得属性:
$("selector").attr('src');
根据您更新的答案:
$('#some a').each(function(){
alert ($(this).attr('href'));
});