如何获取 HTML 表单中的 javascript 值

发布于 2024-12-06 18:13:50 字数 981 浏览 0 评论 0原文

我有 jquery 使用可排序插件。

我使用以下函数来获取值。

    $(function() {
            $( "#sortable" ).sortable({
                placeholder: "ui-state-highlight"
            });

        });

    function overzicht(){
            var regel = '';
            $('ul#sortable li').each(function(index) {
            regel += $(this).attr('id').replace(/ /g, "") + ',';
          });
        }

<ul id="sortable">
        <xsl:for-each select="//regels/item">
        <li style="list-style:none; vertical-align:middle; min-height:50px" id="{veld[3]}" class="ui-state-default">
</li>
        </xsl:for-each>
        </ul>

如何在这样的 HTML 表单中获取“regel”值?

<form name="cartForm" method="post" action="edit_bestellijst.asp">
  <input type="hidden" name="act" value="update" />
  <input type="hidden" name="artNr" value="***regel values***)" />
</form>

我正在使用一点 XSL。 有人可以帮我吗?

I've got jquery using the sortable plug in.

I'm using the following function to get the values.

    $(function() {
            $( "#sortable" ).sortable({
                placeholder: "ui-state-highlight"
            });

        });

    function overzicht(){
            var regel = '';
            $('ul#sortable li').each(function(index) {
            regel += $(this).attr('id').replace(/ /g, "") + ',';
          });
        }

<ul id="sortable">
        <xsl:for-each select="//regels/item">
        <li style="list-style:none; vertical-align:middle; min-height:50px" id="{veld[3]}" class="ui-state-default">
</li>
        </xsl:for-each>
        </ul>

How do I get the "regel" value in a HTML form like this?

<form name="cartForm" method="post" action="edit_bestellijst.asp">
  <input type="hidden" name="act" value="update" />
  <input type="hidden" name="artNr" value="***regel values***)" />
</form>

I'm using a bit XSL.
Can someone please help me?

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

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

发布评论

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

评论(1

橘香 2024-12-13 18:13:50

在每个循环之后
你应该写:

$("input[name='artNr']").val(regel);

after the each loop
you should write :

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