{"id":1830,"date":"2024-11-10T12:12:57","date_gmt":"2024-11-10T04:12:57","guid":{"rendered":"https:\/\/fwq.ai\/blog\/1830\/"},"modified":"2024-11-10T12:12:57","modified_gmt":"2024-11-10T04:12:57","slug":"%e5%a6%82%e4%bd%95%e9%80%9a%e8%bf%87-javascript-%e5%9c%a8%e5%bc%b9%e7%aa%97%e4%b8%ad%e8%8e%b7%e5%8f%96-id-%e5%80%bc%e5%b9%b6%e5%b0%86%e5%85%b6%e4%bd%9c%e4%b8%ba%e9%93%be%e6%8e%a5%e5%8f%82%e6%95%b0","status":"publish","type":"post","link":"https:\/\/fwq.ai\/blog\/1830\/","title":{"rendered":"\u5982\u4f55\u901a\u8fc7 JavaScript \u5728\u5f39\u7a97\u4e2d\u83b7\u53d6 ID \u503c\u5e76\u5c06\u5176\u4f5c\u4e3a\u94fe\u63a5\u53c2\u6570\u8fdb\u884c\u9875\u9762\u8df3\u8f6c\uff1f"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/img.php.cn\/upload\/article\/001\/246\/273\/173059977259810.jpg\" class=\"aligncenter\" title=\"\u5982\u4f55\u901a\u8fc7 JavaScript \u5728\u5f39\u7a97\u4e2d\u83b7\u53d6 ID \u503c\u5e76\u5c06\u5176\u4f5c\u4e3a\u94fe\u63a5\u53c2\u6570\u8fdb\u884c\u9875\u9762\u8df3\u8f6c\uff1f\u63d2\u56fe\" alt=\"\u5982\u4f55\u901a\u8fc7 JavaScript \u5728\u5f39\u7a97\u4e2d\u83b7\u53d6 ID \u503c\u5e76\u5c06\u5176\u4f5c\u4e3a\u94fe\u63a5\u53c2\u6570\u8fdb\u884c\u9875\u9762\u8df3\u8f6c\uff1f\u63d2\u56fe\" \/><\/p>\n<p><strong>\u83b7\u53d6\u5f39\u7a97\u4e2d\u7684 id \u503c\u53ca\u4ece\u94fe\u63a5\u4f20\u53c2<\/strong><\/p>\n<p>\u5bf9\u4e8e\u95ee\u9898\u4e2d\u7684\u573a\u666f\uff0c\u53ef\u4ee5\u901a\u8fc7 javascript \u5b9e\u73b0\u4ee5\u4e0b\u64cd\u4f5c\uff1a<\/p>\n<ol>\n<li>\u5728\u5f39\u7a97\u4e2d\u5b9a\u4e49\u4e00\u4e2a\u9690\u85cf\u7684 input \u6807\u7b7e\uff0c\u7528\u4e8e\u5b58\u50a8\u6240\u9700\u7684 id \u503c\u3002<\/li>\n<li>\u5728\u70b9\u51fb\u201c\u53bb\u8bbe\u7f6e\u201d\u6309\u94ae\u65f6\uff0c\u5c06\u6240\u8981\u8df3\u8f6c\u9875\u9762\u7684 id \u503c\u8d4b\u503c\u7ed9\u9690\u85cf\u7684 input\u3002<\/li>\n<li>\u83b7\u53d6\u9690\u85cf input \u7684\u503c\uff0c\u5e76\u4f7f\u7528\u8be5\u503c\u4f5c\u4e3a\u94fe\u63a5\u4f20\u53c2\u8df3\u8f6c\u5230\u8bbe\u7f6e\u9875\u9762\u3002<\/li>\n<\/ol>\n<p>\u5177\u4f53\u4ee3\u7801\u5b9e\u73b0\uff1a<\/p>\n<pre>\/\/ \u8bbe\u7f6e\u9690\u85cf input \u7528\u4e8e\u5b58\u50a8id\nconst hiddenInput = document.createElement(\"input\");\nhiddenInput.setAttribute(\"type\", \"hidden\");\nhiddenInput.setAttribute(\"id\", \"hidden-id\");\n\n\/\/ \u83b7\u53d6 \"\u53bb\u8bbe\u7f6e\" \u6309\u94ae\nconst setupButton = document.getElementById(\"setup\");\n\n\/\/ \u7ed9\u6309\u94ae\u6dfb\u52a0\u70b9\u51fb\u4e8b\u4ef6\nsetupButton.addEventListener(\"click\", function() {\n  \/\/ \u83b7\u53d6\u6240\u9700\u7684 id \u503c\n  const id = document.querySelector(\"td:first-child\").textContent;\n  \n  \/\/ \u8bbe\u7f6e\u9690\u85cf input \u7684\u503c\n  hiddenInput.value = id;\n  document.body.appendChild(hiddenInput);\n  \n  \/\/ \u4ece\u94fe\u63a5\u4f20\u53c2\u8df3\u8f6c\u5230\u8bbe\u7f6e\u9875\u9762\n  const targetUrl = `\/Index\/jxMoneyToBank?uid=${id}`;\n  window.location.href = targetUrl;\n});<\/pre>\n<p>  \u767b\u5f55\u540e\u590d\u5236   <\/p>\n<p>\u4ee5\u4e0a\u5c31\u662f\u5982\u4f55\u901a\u8fc7 JavaScript \u5728\u5f39\u7a97\u4e2d\u83b7\u53d6 ID \u503c\u5e76\u5c06\u5176\u4f5c\u4e3a\u94fe\u63a5\u53c2\u6570\u8fdb\u884c\u9875\u9762\u8df3\u8f6c\uff1f\u7684\u8be6\u7ec6\u5185\u5bb9\uff0c\u66f4\u591a\u8bf7\u5173\u6ce8\u7c73\u4e91\u5176\u5b83\u76f8\u5173\u6587\u7ae0\uff01<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u83b7\u53d6\u5f39\u7a97\u4e2d\u7684 id \u503c\u53ca\u4ece\u94fe\u63a5\u4f20\u53c2 \u5bf9\u4e8e\u95ee\u9898\u4e2d\u7684\u573a\u666f\uff0c\u53ef\u4ee5\u901a\u8fc7 javascript \u5b9e\u73b0\u4ee5\u4e0b\u64cd\u4f5c\uff1a \u5728\u5f39\u7a97\u4e2d\u5b9a\u4e49\u4e00\u4e2a\u9690\u85cf\u7684 input \u6807\u7b7e\uff0c\u7528\u4e8e\u5b58\u50a8\u6240\u9700\u7684 id \u503c\u3002 \u5728\u70b9\u51fb\u201c\u53bb\u8bbe\u7f6e\u201d\u6309\u94ae\u65f6\uff0c\u5c06\u6240\u8981\u8df3\u8f6c\u9875\u9762\u7684 id \u503c\u8d4b\u503c\u7ed9\u9690\u85cf\u7684 input\u3002 \u83b7\u53d6\u9690\u85cf input \u7684\u503c\uff0c\u5e76\u4f7f\u7528\u8be5\u503c\u4f5c\u4e3a\u94fe\u63a5\u4f20\u53c2\u8df3\u8f6c\u5230\u8bbe\u7f6e\u9875\u9762\u3002 \u5177\u4f53\u4ee3\u7801\u5b9e\u73b0\uff1a \/\/ \u8bbe\u7f6e\u9690\u85cf input \u7528\u4e8e\u5b58\u50a8id const hiddenInput = document.createElement(&#8220;input&#8221;); hiddenInput.setAttribute(&#8220;type&#8221;, &#8220;hidden&#8221;); hiddenInput.setAttribute(&#8220;id&#8221;, &#8220;hidden-id&#8221;); \/\/ \u83b7\u53d6 &#8220;\u53bb\u8bbe\u7f6e&#8221; \u6309\u94ae const setupButton = document.getElementById(&#8220;setup&#8221;); \/\/ \u7ed9\u6309\u94ae\u6dfb\u52a0\u70b9\u51fb\u4e8b\u4ef6 setupButton.addEventListener(&#8220;click&#8221;, function() { \/\/ \u83b7\u53d6\u6240\u9700\u7684 id \u503c const id = document.querySelector(&#8220;td:first-child&#8221;).textContent; \/\/ \u8bbe\u7f6e\u9690\u85cf input [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[16],"tags":[],"class_list":["post-1830","post","type-post","status-publish","format-standard","hentry","category-16"],"_links":{"self":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/1830","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/comments?post=1830"}],"version-history":[{"count":0,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/1830\/revisions"}],"wp:attachment":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/media?parent=1830"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/categories?post=1830"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/tags?post=1830"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}