{"id":1519,"date":"2023-03-25T14:12:17","date_gmt":"2023-03-25T06:12:17","guid":{"rendered":"https:\/\/www.appblog.cn\/?p=1519"},"modified":"2023-04-28T20:18:25","modified_gmt":"2023-04-28T12:18:25","slug":"customize-radio-and-checkbox-styles-for-wechat-mini-program","status":"publish","type":"post","link":"https:\/\/www.appblog.cn\/index.php\/2023\/03\/25\/customize-radio-and-checkbox-styles-for-wechat-mini-program\/","title":{"rendered":"\u5fae\u4fe1\u5c0f\u7a0b\u5e8f\u81ea\u5b9a\u4e49radio\u548ccheckbox\u6837\u5f0f"},"content":{"rendered":"<p>WXSS\u4e2d\u4f7f\u7528:checked\u9009\u62e9\u7b26\u662f\u6ca1\u7528\u7684\uff0c\u76f4\u63a5\u7528display:none\u9690\u85cf\u6389\uff0c\u7136\u540e\u4f7f\u7528\u65b0\u6807\u7b7e\u8bbe\u8ba1\u6837\u5f0f<\/p>\n<blockquote>\n<p>\u6ce8\uff1alabel\u7ec4\u4ef6\u7528\u6765\u6539\u8fdb\u8868\u5355\u7ec4\u4ef6\u7684\u53ef\u7528\u6027\uff0c\u4f7f\u7528for\u5c5e\u6027\u627e\u5230\u5bf9\u5e94\u7684id\uff0c\u6216\u8005\u5c06\u63a7\u4ef6\u653e\u5728\u8be5\u6807\u7b7e\u4e0b\uff0c\u5f53\u70b9\u51fb\u65f6\uff0c\u5c31\u4f1a\u89e6\u53d1\u5bf9\u5e94\u7684\u63a7\u4ef6\u3002<\/p>\n<\/blockquote>\n<p><!-- more --><\/p>\n<p>\u5b98\u65b9\u6587\u6863\uff1a<a target=\"_blank\" rel=\"noopener\" href=\"https:\/\/mp.weixin.qq.com\/debug\/wxadoc\/dev\/component\/label.html\">https:\/\/mp.weixin.qq.com\/debug\/wxadoc\/dev\/component\/label.html<\/a><\/p>\n<h2>WXML<\/h2>\n<pre><code class=\"language-xml\">&lt;radio-group bindchange=&quot;radioChange&quot;&gt; \n  &lt;label class=&quot;ui-radio {{item.checked==true?&#039;checked&#039;:&#039;unchecked&#039;}}&quot; wx:for=&quot;{{items}} wx:key=&quot;*this&quot;&gt;\n    &lt;radio value=&quot;{{item.value}}&quot; checked=&quot;{{item.checked}}&quot;&gt;&lt;\/radio&gt;\n    &lt;text class=&quot;text&quot;&gt;{{item.name}}&lt;\/text&gt;\n  &lt;\/label&gt;\n&lt;\/radio-group&gt;<\/code><\/pre>\n<h2>WXSS<\/h2>\n<pre><code class=\"language-css\">.ui-radio radio, .ui-checkbox checkbox {\n  display: none;\n}\n.ui-radio.unchecked .text {\n  \/*\u8bbe\u8ba1\u6837\u5f0f*\/\n}\n.ui-radio.checked .text {\n  \/*\u8bbe\u8ba1\u6837\u5f0f*\/\n}<\/code><\/pre>\n<h2>JS<\/h2>\n<pre><code class=\"language-javascript\">Page({\n  data: {\n    items: [\n      {value: &#039;USA&#039;, name: &#039;\u7f8e\u56fd&#039;},\n      {value: &#039;CHN&#039;, name: &#039;\u4e2d\u56fd&#039;, checked: &#039;true&#039;},\n      {value: &#039;BRA&#039;, name: &#039;\u5df4\u897f&#039;},\n      {value: &#039;JPN&#039;, name: &#039;\u65e5\u672c&#039;},\n      {value: &#039;ENG&#039;, name: &#039;\u82f1\u56fd&#039;},\n      {value: &#039;FRA&#039;, name: &#039;\u6cd5\u56fd&#039;},\n    ]\n  },\n  radioChange: function(e) {\n    console.log(&#039;radio\u53d1\u751fchange\u4e8b\u4ef6\uff0c\u643a\u5e26value\u503c\u4e3a\uff1a&#039;, e.detail.value)\n\n    var items = this.data.items;\n    for (var i = 0, len = items.length; i &lt; len; ++i) {\n      items[i].checked = items[i].value == e.detail.value\n    }\n\n    this.setData({\n      items: items\n    });\n  }\n})<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>WXSS\u4e2d\u4f7f\u7528:checked\u9009\u62e9\u7b26\u662f\u6ca1\u7528\u7684\uff0c\u76f4\u63a5\u7528display:none\u9690\u85cf\u6389\uff0c\u7136\u540e\u4f7f\u7528\u65b0\u6807\u7b7e\u8bbe\u8ba1\u6837\u5f0f \u6ce8 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[46],"tags":[],"class_list":["post-1519","post","type-post","status-publish","format-standard","hentry","category-wechat-mini-program"],"_links":{"self":[{"href":"https:\/\/www.appblog.cn\/index.php\/wp-json\/wp\/v2\/posts\/1519","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.appblog.cn\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.appblog.cn\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.appblog.cn\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.appblog.cn\/index.php\/wp-json\/wp\/v2\/comments?post=1519"}],"version-history":[{"count":0,"href":"https:\/\/www.appblog.cn\/index.php\/wp-json\/wp\/v2\/posts\/1519\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.appblog.cn\/index.php\/wp-json\/wp\/v2\/media?parent=1519"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.appblog.cn\/index.php\/wp-json\/wp\/v2\/categories?post=1519"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.appblog.cn\/index.php\/wp-json\/wp\/v2\/tags?post=1519"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}