我正在使用 javascript 来访问一些嵌套在 img 中的元素。之后<div>
,我想将这些图像添加到字符串变量中。
我写道:
var SomeVariable="";
$("myDivId img").each(function(){
console.log(this);
SomeVariable += this;
});
console.log(SomeVariable);
在函数console.log
中使用时.each
,它显示如下内容:
<img (some elements)>
,这正是我想要的。
当我console.log
最后使用写整个值时,它说:
[object HTMLImageElement][object HTMLImageElement]
我尝试使用一些转换,但我真的不知道如何实现它。