动态加载模态内的图像

时间:2012-11-30 16:49:04

标签: javascript jquery image

以下是我的代码。我试图在模态中加载图片。图片存在于页面上,我可以获得源代码。有没有办法简单地将图像加载到点击模式中,因为我试图在这里做?我能够点击一个图像并提醒出来;但是当我尝试将源插入函数时;没有任何反应。

我使用ZEND,但我不相信这与手头的情况有关,所以我没有用ZEND标签标记问题。

任何人都可以解释一下我需要做什么才能在点击时加载我的图片吗?

<?php
    $this->headLink()->appendStylesheet($this->baseUrl('css/default/index/designbox.css'));
    $this->jQuery()->onLoadCapturestart();
?>
<!-- Modal Done Here -->
$('.boxDES').click(function() {
    pic1 = document.getElementById(this.id).getAttribute('src');
    alert(pic1);

    $(pic1).dialog(
        {
            modal:      true,
            draggable:  false,
            title:      'Designs',
            height:     'auto',
            width:      'auto',
            open:       function(){
                            jQuery('.ui-widget-overlay').bind('click',function(){
                                jQuery(pic).dialog('close');
                            })
                        }
        }
    );
});
<?php $this->jQuery()->onLoadCaptureEnd(); ?>
<div id="designGroup">

    <div id="title">
        <?php echo strtoupper($this->object->GetType()); ?>
    </div>

    <div id="boxText">
        <?php echo $this->object->GetDescription(); ?>
    </div>

    <?php $links = $this->object->GetLinks(); ?>
    <div id="pictureBox">
        <ul id="grid">
            <li>
                <a href="#">
                    <img id="<?php echo $links[0];?>" class="boxDES" src="<?php echo '/images/design/thumbs/' . $links[0]; ?>"></a>
            </li>
            <li>
                <a href="#">
                    <img id="<?php echo $links[1];?>" class="boxDES" src="<?php echo '/images/design/thumbs/' . $links[1]; ?>"></a>
            </li>
            <li>
                <a href="#">
                    <img id="<?php echo $links[2];?>" class="boxDES" src="<?php echo '/images/design/thumbs/' . $links[2]; ?>"></a>
            </li>
            <li>
                <a href="#">
                    <img id="<?php echo $links[3];?>" class="boxDES" src="<?php echo '/images/design/thumbs/' . $links[3]; ?>"></a>
            </li>
        </ul>
    </div>
    <div style="clear: both;"> </div>
</div>

1 个答案:

答案 0 :(得分:0)

 This is how to build a variable that holds my IMG.

var catIMG = $('<img/>', {
                                "class" :"inline",
                                src:pic1
                        });

以下是现在已修复且完整的JSCRIPT -

$('.boxDES').click(function() {
    pic1 = document.getElementById(this.id).getAttribute('src');
    var catIMG = $('<img/>', {
                        "class" :"inline",
                        src:pic1
                });

    $(catIMG).dialog(
        {
            modal:      true,
            draggable:  false,
            title:      'Designs',
            height:     'auto',
            width:      'auto',
            open:       function(){
                            jQuery('.ui-widget-overlay').bind('click',function(){
                                jQuery(pic).dialog('close');
                            })
                        }
        }
    );
});

我可以在https://stackoverflow.com/a/10788966/1583066

找到这些信息