Javascript - 输出数组的值

发布于 2024-12-17 20:01:36 字数 393 浏览 1 评论 0原文

我有一个简单的图像 SRC 值的 JavaScript 数组,

我收集图像 src 属性,就像构建一个数组一样:

    var imgSrc = [];
    $('.monelem_controls_imageControl_container img').each(function () {
        imgSrc.push($(this).attr("src"));
    });

然后我需要以以下格式输出图像数组: ['images/fullscreen/image1.jpg','images/fullscreen/image2.jpg','images/fullscreen/image3.jpg'];

我怎样才能以这种方式输出我的数组?

I have a simple JavaScript array of image SRC values,

I gather the image src attributes like so building up an array:

    var imgSrc = [];
    $('.monelem_controls_imageControl_container img').each(function () {
        imgSrc.push($(this).attr("src"));
    });

I then need to output the array of images in the following format:
['images/fullscreen/image1.jpg','images/fullscreen/image2.jpg','images/fullscreen/image3.jpg'];

How can I output my array in this way?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

风吹雪碎 2024-12-24 20:01:36

使用 JSON:

JSON.stringify( myArray );

Use JSON:

JSON.stringify( myArray );
七颜 2024-12-24 20:01:36

如果您的数组仅包含原始类型(如字符串),则可以使用 toString( ) 并添加方括号:

var images = [
   "images/fullscreen/image1.jpg",
   "images/fullscreen/image2.jpg",
   "images/fullscreen/image3.jpg"
];
var serialized = "[" + images.toString() + "]";

If your array only contains primitive types (like strings), you can use toString() and add the square brackets:

var images = [
   "images/fullscreen/image1.jpg",
   "images/fullscreen/image2.jpg",
   "images/fullscreen/image3.jpg"
];
var serialized = "[" + images.toString() + "]";
薄荷→糖丶微凉 2024-12-24 20:01:36
var arr = [
    'images/fullscreen/image1.jpg',
    'images/fullscreen/image2.jpg',
    'images/fullscreen/image3.jpg'
];
var strArray = "['" + arr.join("','") + "']";  
var arr = [
    'images/fullscreen/image1.jpg',
    'images/fullscreen/image2.jpg',
    'images/fullscreen/image3.jpg'
];
var strArray = "['" + arr.join("','") + "']";  
吃不饱 2024-12-24 20:01:36

这应该可以解决这个问题,尝试这个 JS Fiddle,尽管当我完成这个时,@Innuendo 已经得到了一个更简洁的答案!

http://jsfiddle.net/7vCFa/

This should do the trick try this JS Fiddle, though by the time i'd done this @Innuendo has got a more neater answer!

http://jsfiddle.net/7vCFa/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文