<bdo id='OCBtz'></bdo><ul id='OCBtz'></ul>

  • <small id='OCBtz'></small><noframes id='OCBtz'>

    <legend id='OCBtz'><style id='OCBtz'><dir id='OCBtz'><q id='OCBtz'></q></dir></style></legend>
  • <i id='OCBtz'><tr id='OCBtz'><dt id='OCBtz'><q id='OCBtz'><span id='OCBtz'><b id='OCBtz'><form id='OCBtz'><ins id='OCBtz'></ins><ul id='OCBtz'></ul><sub id='OCBtz'></sub></form><legend id='OCBtz'></legend><bdo id='OCBtz'><pre id='OCBtz'><center id='OCBtz'></center></pre></bdo></b><th id='OCBtz'></th></span></q></dt></tr></i><div id='OCBtz'><tfoot id='OCBtz'></tfoot><dl id='OCBtz'><fieldset id='OCBtz'></fieldset></dl></div>
  • <tfoot id='OCBtz'></tfoot>

      1. 使用 JQuery 设置隐藏字段的值

        时间:2023-08-01
        <legend id='JYQmh'><style id='JYQmh'><dir id='JYQmh'><q id='JYQmh'></q></dir></style></legend>

        • <bdo id='JYQmh'></bdo><ul id='JYQmh'></ul>
            <i id='JYQmh'><tr id='JYQmh'><dt id='JYQmh'><q id='JYQmh'><span id='JYQmh'><b id='JYQmh'><form id='JYQmh'><ins id='JYQmh'></ins><ul id='JYQmh'></ul><sub id='JYQmh'></sub></form><legend id='JYQmh'></legend><bdo id='JYQmh'><pre id='JYQmh'><center id='JYQmh'></center></pre></bdo></b><th id='JYQmh'></th></span></q></dt></tr></i><div id='JYQmh'><tfoot id='JYQmh'></tfoot><dl id='JYQmh'><fieldset id='JYQmh'></fieldset></dl></div>

                <tfoot id='JYQmh'></tfoot>

                    <tbody id='JYQmh'></tbody>

                  <small id='JYQmh'></small><noframes id='JYQmh'>

                  本文介绍了使用 JQuery 设置隐藏字段的值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我想使用 JQuery 设置隐藏字段的值.

                  I want to set the value of a hidden field, using JQuery.

                  隐藏字段:

                  <input id="chag_sort" type="hidden" name="chag_sort">
                  

                  我的 JQuery:

                   $("#input[name=chag_sort]").val(sort2);
                  

                  我做错了什么?我还应该在控制台中提到 sort2 实际上有一个值:DESC.

                  What am I doing wrong? I should also mention in console that sort2 does in fact have a value: DESC.

                  推荐答案

                  选择器不应该是#input.这意味着带有 id="input" 的字段不是您的情况.你想要:

                  The selector should not be #input. That means a field with id="input" which is not your case. You want:

                  $('#chag_sort').val(sort2);
                  

                  或者,如果您的隐藏输入没有唯一 ID,而只有 name="chag_sort":

                  Or if your hidden input didn't have an unique id but only a name="chag_sort":

                  $('input[name="chag_sort"]').val(sort2);
                  

                  这篇关于使用 JQuery 设置隐藏字段的值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:使用 ajax 请求设置引用 URL 下一篇:Raphael 中的动画是如何完成的?

                  相关文章

                  1. <tfoot id='xdIJS'></tfoot>

                    <small id='xdIJS'></small><noframes id='xdIJS'>

                      <i id='xdIJS'><tr id='xdIJS'><dt id='xdIJS'><q id='xdIJS'><span id='xdIJS'><b id='xdIJS'><form id='xdIJS'><ins id='xdIJS'></ins><ul id='xdIJS'></ul><sub id='xdIJS'></sub></form><legend id='xdIJS'></legend><bdo id='xdIJS'><pre id='xdIJS'><center id='xdIJS'></center></pre></bdo></b><th id='xdIJS'></th></span></q></dt></tr></i><div id='xdIJS'><tfoot id='xdIJS'></tfoot><dl id='xdIJS'><fieldset id='xdIJS'></fieldset></dl></div>

                        <bdo id='xdIJS'></bdo><ul id='xdIJS'></ul>

                    1. <legend id='xdIJS'><style id='xdIJS'><dir id='xdIJS'><q id='xdIJS'></q></dir></style></legend>