0

我很清楚这个问题被问了很多次,但是我的问题有些不同,我没有找到解决方案。

现在问题来了。

我有一张图片,所以每当我点击图片时,弹出窗口就会打开并显示数据。现在我想让这个动态并希望数据应该根据 id 来。

这是我的图像代码。:

<div id='contact-form'>

        <a href='#' class='contact'><img src="<?php echo base_url();?>/assets/images/pre.jpg" style="height:18px; width:18px"></a>
      </div>
        <!-- preload the images -->
        <div style='display:none'>
            <img src='<?php echo base_url();?>assets/images/img/contact/loading.gif' alt='' />
        </div>  


And on its click the ajax is called from js file here is the code of that js file:
//here the provider is controller and show_coupon_pre is a function which call the view having the data.
$.get("provider/show_coupon_pre", function(data){
                    // create a modal dialog with the data
                    $(data).modal({
                        closeHTML: "<a href='#' title='Close' class='modal-close'>x</a>",
                        position: ["15%",],
                        overlayId: 'contact-overlay',
                        containerId: 'contact-container',
                        onOpen: contact.open,
                        onShow: contact.show,
                        onClose: contact.close
                    });
                });

我有一个没有记录的表,每个记录都有这种类型的图像。用户可以单击并在弹出窗口中获取预览。但我想根据 id=1 的行在弹出窗口中显示数据,它应该显示 id==1 的数据,依此类推。现在你们能帮我吗?如何将此ID传递给我可以获取所需数据的js文件。

我在codeignitor工作。

4

2 回答 2

1

最简单的解决方案

<table>
<tr>
 <td><img class="banner" src="/image1.png" post_id="1"></td>
 <td>some other data 1</td>
</tr>
<tr>
 <td>
 <td><img class="banner" src="/image1.png" post_id="2"></td>
 <td>some other data 2</td>
</tr>
</table>

Javascript:

$('.banner').click(function() { 
  post_id = $(this).attr("post_id");

  // send your ajax with post_id
} );
于 2012-09-18T09:39:48.797 回答
0

如果您在输出图像时在 php 中有 ID,我会这样做:

<script>
var randomId = <?php echo '"' . $phpId . '"'; ?>
</script>
于 2012-09-18T09:41:35.257 回答