1

所以我的html文件中有以下情况:

<div id = "imagePreview">
    <div id = "earlyDetectionPlots">
        <div id = "earlyDetectionScoreMetricsPlots">
        </div>
        <div id = "earlyDetectionVariableMetricsPlots">
        </div>
        <div id = "earlyDetectionPseudoStandardizedCoefficientPlots">
        </div>
    </div>
</div>

我有一个jQuery函数如下:

        $(document).on('click', 'a[data-link]', function () {
        var $this = $(this);
        url = $this.data('link');
        $("#imagePreview").load("imageProcess.aspx?" + url);
    });

其中 url 具有类似等GET形式的参数。m=2k01&type=EarlyDetection

在我的imageProcess.aspx文件中,我使用正则表达式从文件夹中抓取一堆图像。

但是,上面的每个 div 中都将包含不同的数据。我知道如何决定哪些图像去哪里,但我不知道如何使用 c# 说类似的东西,#earlyDetectionScoreMetricsPlots.append("image.png"),因为我不想将图像直接附加到 imagePreview 而是附加到其中的subdiv 中,就我而言知道,我不能在imageProcess文件中使用 jQuery。

(我认为可能有一种方法可以调用imageProcess.aspx文件中对应于不同的特定函数<divs>,但我不知道如何使用 jQuery 来做到这一点)。任何帮助将非常感激。

4

1 回答 1

1

您要么需要更复杂的 jQuery,要么返回您想要的实际#imagePreview内容imageProcess.aspx

于 2012-06-13T20:44:07.837 回答