{"id":2412,"date":"2024-11-10T10:59:12","date_gmt":"2024-11-10T02:59:12","guid":{"rendered":"https:\/\/fwq.ai\/blog\/2412\/"},"modified":"2024-11-10T10:59:12","modified_gmt":"2024-11-10T02:59:12","slug":"%e4%b8%ba%e4%bb%80%e4%b9%88%e6%88%91%e7%9a%84%e4%bb%a3%e7%a0%81%e5%8f%aa%e5%9c%a8%e4%b8%80%e5%8f%b0%e7%94%b5%e8%84%91%e4%b8%8a%e5%8f%96%e5%80%bc%e5%a4%b1%e8%b4%a5%ef%bc%9f","status":"publish","type":"post","link":"https:\/\/fwq.ai\/blog\/2412\/","title":{"rendered":"\u4e3a\u4ec0\u4e48\u6211\u7684\u4ee3\u7801\u53ea\u5728\u4e00\u53f0\u7535\u8111\u4e0a\u53d6\u503c\u5931\u8d25\uff1f"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/img.php.cn\/upload\/article\/001\/246\/273\/173072937527633.jpg\" class=\"aligncenter\" title=\"\u4e3a\u4ec0\u4e48\u6211\u7684\u4ee3\u7801\u53ea\u5728\u4e00\u53f0\u7535\u8111\u4e0a\u53d6\u503c\u5931\u8d25\uff1f\u63d2\u56fe\" alt=\"\u4e3a\u4ec0\u4e48\u6211\u7684\u4ee3\u7801\u53ea\u5728\u4e00\u53f0\u7535\u8111\u4e0a\u53d6\u503c\u5931\u8d25\uff1f\u63d2\u56fe\" \/><\/p>\n<p><strong>\u4e3a\u4ec0\u4e48\u53d6\u503c\u5931\u8d25\uff0c\u504f\u504f\u53ea\u5728\u67d0\u4e00\u53f0\u7535\u8111\u4e0a\u51fa\u73b0<\/strong><\/p>\n<p>\u5728 html \u6587\u6863\u4e2d\uff0c\u83b7\u53d6\u5143\u7d20\u65f6\u9047\u5230\u4e86\u8fd9\u6837\u4e00\u4e2a\u95ee\u9898\uff1a<\/p>\n<pre>var radios = document.getelementsbyname(\"index\");\n\nfor (var i = 0; i &lt; radios.length; i++) {\n  var radioi = radios[i];\n\n  if (radioi.checked == true) {\n    var flwcode = radioi.flwcode; \/\/ \u53d6\u503c\u5931\u8d25\n    var taskid = radioi.taskid; \/\/ \u53d6\u503c\u5931\u8d25\n  }\n}<\/pre>\n<p>  \u767b\u5f55\u540e\u590d\u5236   <\/p>\n<p>\u5728\u6240\u6709\u7535\u8111\u4e0a\u90fd\u6b63\u5e38\u6267\u884c\uff0c\u552f\u72ec\u4e00\u53f0\u7535\u8111\u4f1a\u53d6\u503c\u5931\u8d25\u3002<\/p>\n<p><strong>\u95ee\u9898\u89e3\u7b54<\/strong><\/p>\n<p>\u51fa\u73b0\u8fd9\u4e2a\u95ee\u9898\u7684\u539f\u56e0\u5728\u4e8e\uff0cflwcode \u548c taskid \u662f\u975e\u6807\u51c6\u5c5e\u6027\u3002\u5728\u5927\u591a\u6570\u6d4f\u89c8\u5668\u4e2d\uff0c\u53ef\u4ee5\u4f7f\u7528\u70b9\u8bed\u6cd5\u76f4\u63a5\u83b7\u53d6\u8fd9\u4e9b\u5c5e\u6027\u7684\u503c\uff0c\u4f46\u67d0\u4e9b\u6d4f\u89c8\u5668\u5e76\u4e0d\u517c\u5bb9\u3002<\/p>\n<p>\u60f3\u8981\u89e3\u51b3\u8fd9\u4e2a\u95ee\u9898\uff0c\u53ef\u4ee5\u91c7\u7528\u4ee5\u4e0b\u65b9\u6cd5\uff1a<\/p>\n<ol>\n<li>\n<p><strong>\u4f7f\u7528 getattribute \u65b9\u6cd5<\/strong><\/p>\n<p>getattribute \u65b9\u6cd5\u53ef\u4ee5\u83b7\u53d6\u5143\u7d20\u7684\u4efb\u4f55\u5c5e\u6027\uff0c\u5305\u62ec\u975e\u6807\u51c6\u5c5e\u6027\u3002\u793a\u4f8b\u4ee3\u7801\uff1a<\/p>\n<pre>var flwcode = radioi.getattribute(\"flwcode\");\nvar taskid = radioi.getattribute(\"taskid\");<\/pre>\n<p>  \u767b\u5f55\u540e\u590d\u5236  <\/li>\n<li>\n<p><strong>\u4f7f\u7528 data-* \u5c5e\u6027<\/strong><\/p>\n<p>data-* \u5c5e\u6027\u662f html5 \u4e2d\u65b0\u589e\u7684\uff0c\u4e13\u95e8\u7528\u6765\u5b58\u50a8\u975e\u6807\u51c6\u6570\u636e\u3002\u793a\u4f8b\u4ee3\u7801\uff1a<\/p>\n<pre>var flwCode = radioI.getAttribute(\"data-flw-code\");\nvar taskId = radioI.getAttribute(\"data-task-id\");<\/pre>\n<p>  \u767b\u5f55\u540e\u590d\u5236  <\/li>\n<\/ol>\n<p>\u9700\u8981\u6ce8\u610f\u7684\u662f\uff0cgetattribute \u65b9\u6cd5\u867d\u7136\u517c\u5bb9\u6027\u8f83\u597d\uff0c\u4f46\u5e76\u975e\u6240\u6709\u7684\u5c5e\u6027\u90fd\u80fd\u83b7\u53d6\u3002\u800c data-* \u5c5e\u6027\u7684\u517c\u5bb9\u6027\u8f83\u5dee\uff0c\u5efa\u8bae\u5728\u5fc5\u8981\u65f6\u4f7f\u7528\u3002<\/p>\n<p>\u81f3\u4e8e\u5b66\u4e60\u65b9\u6cd5\uff0c\u5efa\u8bae\u5148\u638c\u63e1\u539f\u751f javascript \u7684\u57fa\u7840\u77e5\u8bc6\uff0c\u7136\u540e\u518d\u5b66\u4e60 jquery \u7b49\u6846\u67b6\uff0c\u8fd9\u6709\u52a9\u4e8e\u7406\u89e3\u5e95\u5c42\u539f\u7406\u548c\u63d0\u9ad8\u517c\u5bb9\u6027\u5904\u7406\u80fd\u529b\u3002<\/p>\n<p>\u4ee5\u4e0a\u5c31\u662f\u4e3a\u4ec0\u4e48\u6211\u7684\u4ee3\u7801\u53ea\u5728\u4e00\u53f0\u7535\u8111\u4e0a\u53d6\u503c\u5931\u8d25\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>\u4e3a\u4ec0\u4e48\u53d6\u503c\u5931\u8d25\uff0c\u504f\u504f\u53ea\u5728\u67d0\u4e00\u53f0\u7535\u8111\u4e0a\u51fa\u73b0 \u5728 html \u6587\u6863\u4e2d\uff0c\u83b7\u53d6\u5143\u7d20\u65f6\u9047\u5230\u4e86\u8fd9\u6837\u4e00\u4e2a\u95ee\u9898\uff1a var radios = document.getelementsbyname(&#8220;index&#8221;); for (var i = 0; i &lt; radios.length; i++) { var radioi = radios[i]; if (radioi.checked == true) { var flwcode = radioi.flwcode; \/\/ \u53d6\u503c\u5931\u8d25 var taskid = radioi.taskid; \/\/ \u53d6\u503c\u5931\u8d25 } } \u767b\u5f55\u540e\u590d\u5236 \u5728\u6240\u6709\u7535\u8111\u4e0a\u90fd\u6b63\u5e38\u6267\u884c\uff0c\u552f\u72ec\u4e00\u53f0\u7535\u8111\u4f1a\u53d6\u503c\u5931\u8d25\u3002 \u95ee\u9898\u89e3\u7b54 \u51fa\u73b0\u8fd9\u4e2a\u95ee\u9898\u7684\u539f\u56e0\u5728\u4e8e\uff0cflwcode \u548c taskid \u662f\u975e\u6807\u51c6\u5c5e\u6027\u3002\u5728\u5927\u591a\u6570\u6d4f\u89c8\u5668\u4e2d\uff0c\u53ef\u4ee5\u4f7f\u7528\u70b9\u8bed\u6cd5\u76f4\u63a5\u83b7\u53d6\u8fd9\u4e9b\u5c5e\u6027\u7684\u503c\uff0c\u4f46\u67d0\u4e9b\u6d4f\u89c8\u5668\u5e76\u4e0d\u517c\u5bb9\u3002 \u60f3\u8981\u89e3\u51b3\u8fd9\u4e2a\u95ee\u9898\uff0c\u53ef\u4ee5\u91c7\u7528\u4ee5\u4e0b\u65b9\u6cd5\uff1a \u4f7f\u7528 getattribute \u65b9\u6cd5 getattribute \u65b9\u6cd5\u53ef\u4ee5\u83b7\u53d6\u5143\u7d20\u7684\u4efb\u4f55\u5c5e\u6027\uff0c\u5305\u62ec\u975e\u6807\u51c6\u5c5e\u6027\u3002\u793a\u4f8b\u4ee3\u7801\uff1a var [&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-2412","post","type-post","status-publish","format-standard","hentry","category-16"],"_links":{"self":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/2412","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=2412"}],"version-history":[{"count":0,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/2412\/revisions"}],"wp:attachment":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/media?parent=2412"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/categories?post=2412"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/tags?post=2412"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}