2

每个人:

我试图从一个页面中获取图像的源 URL,并在另一个页面的一些 JavaScript 中使用它们。我知道如何使用 JQuery .load() 提取图像。但是,我不想加载所有图像并将它们显示在页面上,而是只想获取源 URL,以便可以在 JS 数组中使用它们。

第 1 页只是一个带有图像的页面:

<html>
  <head>
  </head>
  <body>
    <img id="image0" src="image0.jpg" />
    <img id="image1" src="image1.jpg" />
    <img id="image2" src="image2.jpg" />
    <img id="image3" src="image3.jpg" />
  </body>
</html>

第 2 页包含我的 JS。(请注意,最终目标是将图像加载到数组中,将它们随机化,并使用 cookie,每 10 秒在页面加载时显示一个新图像。所有这些都有效。但是,而不是将图像路径硬编码到我的 javascript 中如下图所示,我更喜欢根据它们的 ID 从第 1 页获取路径。这样,图像不会总是需要标题为“image1.jpg”等)

<script type = "text/javascript">
        var days = 730;
        var rotator = new Object();
        var currentTime = new Date();
        var currentMilli = currentTime.getTime();
        var images = [], index = 0;
        images[0] = "image0.jpg";
        images[1] = "image1.jpg";
        images[2] = "image2.jpg";
        images[3] = "image3.jpg";
        rotator.getCookie = function(Name) { 
            var re = new RegExp(Name+"=[^;]+", "i"); 
            if (document.cookie.match(re)) 
                return document.cookie.match(re)[0].split("=")[1];
                return''; 
        }
        rotator.setCookie = function(name, value, days) { 
            var expireDate = new Date();
            var expstring = expireDate.setDate(expireDate.getDate()+parseInt(days));
            document.cookie = name+"="+value+"; expires="+expireDate.toGMTString()+"; path=/";
        }
        rotator.randomize = function() {
            index = Math.floor(Math.random() * images.length);
            randomImageSrc = images[index];
        }
        rotator.check = function() {
            if (rotator.getCookie("randomImage") == "") {
                rotator.randomize();
                document.write("<img src=" + randomImageSrc + ">");
                rotator.setCookie("randomImage", randomImageSrc, days);
                rotator.setCookie("timeClock", currentMilli, days);
            }
            else {
                var writtenTime = parseInt(rotator.getCookie("timeClock"),10);
                if ( currentMilli > writtenTime + 10000 ) {
                    rotator.randomize();
                    var writtenImage = rotator.getCookie("randomImage")
                    while ( randomImageSrc == writtenImage ) {
                        rotator.randomize();
                    }
                    document.write("<img src=" + randomImageSrc + ">");
                    rotator.setCookie("randomImage", randomImageSrc, days);
                    rotator.setCookie("timeClock", currentMilli, days);
                }
                else {
                    var writtenImage = rotator.getCookie("randomImage") 
                    document.write("<img src=" + writtenImage + ">");
                }
            }
        }
        rotator.check()
    </script>

谁能指出我正确的方向?我的直觉是使用 JQuery .get(),但到目前为止我还没有成功。

如果我能澄清,请告诉我!

4

3 回答 3

2

尝试这个。

<script>
$.get('http://path/to/page/1', function(data) {
    var imgs = $('<div/>').html(data).find('img');
    imgs.each(function(i, img) {
        alert(img.src); // show a dialog containing the url of image
    });
});
</script>
于 2012-10-08T21:29:35.180 回答
1

我不明白您为什么要为此使用 cookie。您应该获取 page1,找到图像,然后使用 setInterval 更新 src。

$.get('page1.html', function(data, status) { // get the page with the images
    var parser = new DOMParser();
    var xmldoc = parser.parseFromString(data, "text/html");  //turn it into a dom

    var imgs = xmldoc.getElementsByTagName('img'); //get the img tags
    var imageSrcs = Array.prototype.slice.call(imgs).map(function(img) {
       return img.src; //convert them to an array of sources
    });

    setInterval(function() { // run this every 10 seconds
        var imags = document.getElementsByTagName('img'); // find the images on this page
        Array.prototype.slice.call(imgs).forEach(function(img) {
             var imgSrc = Math.floor(Math.random()*imageSrcs.length);  //get a random image source
             img.src = imageSrcs[imgSrc];  //set this image to the src we just picked at random
        });
    }, 10000);

}, 'html');
于 2012-10-08T21:26:39.720 回答
0

为什么不使用ajax?您可以将包含所有图像的外部页面部分 .load() 放入隐藏容器中,然后通过回调推断您需要的信息。

外部.html

<html>
....
    <div id="imgContainer">
         <img id="image0" src="image0.jpg" />
         <img id="image1" src="image1.jpg" />
         <img id="image2" src="image2.jpg" />
         <img id="image3" src="image3.jpg" />
    </div>
</html>

ajax.js

function ajaxContent(reg, extReg) {

var toLoad = 'external.html' + extReg;

function loadContent() {
    $(reg).load(toLoad,'',getSrcPaths())
}

function getSrcPaths() {
    $(reg + ' #image0').delay(200).fadeIn('slow');
    $(reg + ' #image1').delay(200).fadeIn('slow');
    // or however you want to store/display the images
}
}

然后 onload 只需调用 ajaxContent 之类的

<body onload="ajaxContent('#hiddenContainer','#imgContainer')">
     ....
</body>

如果您的图像很大或页面加载受到负面影响,这当然不是真正相关的。尽管由于您现在实际上拥有图像,您甚至可以只显示它们而不是隐藏它们。我想这取决于您需要操纵多少原件。

于 2012-10-08T21:35:20.287 回答