0

下面是我的代码。我正在尝试以模式加载图片。图片存在于页面上,我能够获得来源。有没有办法像我在这里尝试做的那样,在点击时将图像简单地加载到模态中?我可以单击图像并警告源;但是当我尝试将源代码插入函数时;没发生什么事。

我正在使用 ZEND,但我认为这与当前的情况无关,因此我没有使用 ZEND 标记来标记问题。

谁能解释我需要做什么才能在点击时将我的图像加载到 MODAL 中?

<?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>
4

1 回答 1

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

于 2012-11-30T17:09:04.170 回答