如何在母版页的表单元素中添加隐藏字段

发布于 2024-10-13 02:00:46 字数 140 浏览 2 评论 0原文

我想通过 jquery 或 javascript 将隐藏字段添加到我拥有的每个视图中。但我希望该代码位于 MasterPage.Master 中,因此我在一个地方编写代码,并将其添加到我拥有的每个视图中。如果可以的话我可以这样做吗?我使用 asp.net mvc 2

I want to add hidden field to every view i have through jquery or javascript. But i want that code to be in MasterPage.Master so i write code at one place and it adds on every view i have. Can i do this if yes then how? Im using asp.net mvc 2

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

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

发布评论

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

评论(2

薄情伤 2024-10-20 02:00:46

在您的母版中:

$(function() {
    $('body').append(
        $('<input/>')
            .attr('type', 'hidden')
            .attr('name', 'foo')
            .val('some value')
    );
});

或者如果您希望将此隐藏字段插入到某个特定位置,请将 $('body') 替换为您在母版页中某处放置的占位符的其他选择器。您还可以通过给它们一些 id 或类来将其插入到现有的

中(如果同一页面上有更多这样的内容,并且您想在每个表单中插入此隐藏字段)。

In your master:

$(function() {
    $('body').append(
        $('<input/>')
            .attr('type', 'hidden')
            .attr('name', 'foo')
            .val('some value')
    );
});

or replace $('body') with some other selector to a placeholder you've put somewhere in your master page if you want this hidden field to be inserted in some specific position. You could also insert it into existing <form> by giving them some id or class (if you have more of them on the same page and you wanted to insert this hidden field in each form).

你在我安 2024-10-20 02:00:46

不确定 MVC,但在母版页 Page_PreRender 方法中,您可以有这样的代码:

HiddenField field = new HiddenField();
field.ID = "HiddenField1";
field.Value = "SomeValue";
(this.Page.FindControl("form1") as HtmlForm).Controls.Add(field);

无论哪个页面使用母版页,这都会将隐藏字段推送到表单。

Not sure about MVC but in the master page Page_PreRender method you can have such code:

HiddenField field = new HiddenField();
field.ID = "HiddenField1";
field.Value = "SomeValue";
(this.Page.FindControl("form1") as HtmlForm).Controls.Add(field);

This will push the hidden field to the form regardless of what page is using the master page.

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