<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 设置隐藏字段的值

        Set the Value of a Hidden field using JQuery(使用 JQuery 设置隐藏字段的值)
        <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 设置隐藏字段的值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  quot;Status Code:200 OK (from ServiceWorker)quot; in Chrome Network DevTools?(“状态码:200 OK(来自 ServiceWorker)在 Chrome 网络开发工具中?)
                  How to set a header for a HTTP GET request, and trigger file download?(如何为 HTTP GET 请求设置标头并触发文件下载?)
                  Adding custom HTTP headers using JavaScript(使用 JavaScript 添加自定义 HTTP 标头)
                  SQL Query DocumentDB in Azure Functions by an integer not working(通过整数在 Azure Functions 中 SQL 查询 DocumentDB 不起作用)
                  Azure Functions [JavaScript / Node.js] - HTTP call, good practices(Azure Functions [JavaScript/Node.js] - HTTP 调用,良好实践)
                  Azure Functions - Import Custom Node Module(Azure Functions - 导入自定义节点模块)
                  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>
                              <tbody id='xdIJS'></tbody>

                          • <legend id='xdIJS'><style id='xdIJS'><dir id='xdIJS'><q id='xdIJS'></q></dir></style></legend>