从c#中调用jQuery函数

本文关键字:jQuery 函数 调用 | 更新日期: 2023-09-27 18:11:23

下面的函数需要从c#中调用

$('.image-cropper').each(linkUp);

谁能解释一下这是怎么做到的?我尝试使用下面的代码

    String csname1 = "PopupScript";
    Type cstype = this.GetType();
    ClientScriptManager cs = Page.ClientScript;
    StringBuilder cstext2 = new StringBuilder();
    cstext2.Append("<script type='"text/javascript'"> $('.image-cropper').each(linkUp); </");
    cstext2.Append("script>");
    cs.RegisterClientScriptBlock(cstype, csname1, cstext2.ToString(), false);

从c#中调用jQuery函数

你应该在jQuery ready函数中调用你的代码,例如:

$(function() {
    $('.image-cropper').each(linkUp);
});

您的代码不工作的可能原因是当您的代码运行时,图像裁剪器元素不在DOM中。