无需按钮即可更改图像

时间:2018-02-19 14:13:00

标签: javascript html

我看到的每个地方都会发现有关如何更改图片来源的问题和骚扰,但是还有按钮。

我只想根据标签值更改图片的来源。

<script>
function changeBG(tag) {
    if (tag.value > 0)

        var image = document.getElementById('square');
        image.src = "images/green.bmp"

    iX.createTag('__ix_background_data_any_se_open', changeBG, 'interval')
}
</script>

<img src="images/info_trans.bmp" id="square" class="square" style="position:absolute;left:726px;top:22px;" />

所以我想要的代码是:

__ix_background_data_any_se_open的值为0时,将显示gray.bmp。

如果__ix_background_data_any_se_open的值高于0,则会显示green.bmp。

0 个答案:

没有答案