jqModal传递参数

发布于 2024-08-05 22:17:27 字数 683 浏览 6 评论 0原文

如何将数据传递给 jqModal?例如,当单击 Button2 时,我可以传递按钮的 id 或隐藏字段并让控制器拾取它吗?

<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">

<script type="text/javascript">

    $(document).ready(function() {
        $('#title').css('background-color', 'red');
        $('#dialog').jqm({ trigger: '.Button2', ajax: "/Home/AddAssignment" });
    });

</script>

    <h2 id="title">Index</h2>
    <div id="dialog" class="jqmWindow">This is a dialog window</div>
        <a class="Button2" id="Button2">Test</a>
    <div id="someDiv">some div</div>

</asp:Content>

谢谢, 罗德查尔

how do you pass data to the jqModal? For example, when Button2 is clicked can i pass the button's id or a hidden field and have the controller pick it up?

<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">

<script type="text/javascript">

    $(document).ready(function() {
        $('#title').css('background-color', 'red');
        $('#dialog').jqm({ trigger: '.Button2', ajax: "/Home/AddAssignment" });
    });

</script>

    <h2 id="title">Index</h2>
    <div id="dialog" class="jqmWindow">This is a dialog window</div>
        <a class="Button2" id="Button2">Test</a>
    <div id="someDiv">some div</div>

</asp:Content>

Thanks,
rodchar

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

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

发布评论

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

评论(1

怀念你的温柔 2024-08-12 22:17:27
$.post("/Articles/jQueryAddComment", { commentText: commentText, id: id, type: commentType },function.....

我这样调用我的控制器,并传入如上所示的参数。

如果你想将 id 传递给控制器​​,你可以使用 this.id 。

这是你想要的还是我偏离了基地?

$.post("/Articles/jQueryAddComment", { commentText: commentText, id: id, type: commentType },function.....

I call my controller like this and I pass in the parameters as you see above.

You could use this.id if you want to pass the id to the controller.

Is this what you were after or am I off base?

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