从 C# 调用 jQuery 函数

发布于 2024-12-10 04:21:22 字数 545 浏览 0 评论 0原文

我有下面的函数,需要从 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);

,但它不起作用。

I have the function below which needs to be called from C#

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

Can anyone explain how it could be done. I tried using the below code

    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);

but it did not work.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

转身泪倾城 2024-12-17 04:21:22

您确实应该在 jQuery 就绪函数中调用您的代码,即:

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

您的代码无法正常工作的可能原因是,当您的代码运行时,image-cropper 元素不在 DOM 中。

You should really be calling your code inside the jQuery ready function ie:

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

The likely reason your code wasn't working was that the image-cropper elements weren't in the DOM when your code was run.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文