-6

请帮我解决一下这个。

示例我有以下图像代码,并希望在 5 天后删除下面的图像,如何进一步编码?

    <imgsrc="http://www.quackit.com/pix/milford_sound/milford_sound_t.jpg" style="max-width:100%" alt="Milford Sound in New Zealand" /> 

应该在此代码中添加什么代码以使此图像在 5 天后删除?

4

1 回答 1

0

要删除给定 URL 的任何(1 个或多个)IMG 标签:

<img src="http://quackit.com/pix/milford_sound/milford_sound_t.jpg"; 
    style="max-width:100%" alt="Milford Sound in New Zealand" />

通过 JavaScript 从页面附加以下代码:

<script type='text/javascript'>
function removeThatImg() {
    var ex=document.getElementsByTagName("img");
    for (var i=0;i<ex.length;i++) {
        if ( ex[i].src == "http://quackit.com/pix/milford_sound/milford_sound_t.jpg" )
            ex[i].parentNode.removeChild(ex[i]);
    }
}
var dateStart = Date.parse('March 16, 2013')/86400000;
var dateNow = new Date();
dateNow = dateNow.getTime()/86400000;
if ( dateNow - dateStart > 5) // more than 5 days 
    window.onload=function() {
        //do it with a half second delay, because google may take time to add that image
        //and right after the page is loaded it may not yet be there
        setTimeout(removeThatImg,500);
    }
</script>

它可能会起作用(或者可能不会——我认为会是这样,简单地说,因为图像每次都会不同)

于 2013-03-16T21:32:54.763 回答