    <!-- Form for Year, Month, Category selection -->
    <form method="get" onsubmit="return handleFormSubmit(this);">
        <div class="row align-items-center">
            <div class="col-md mb-3">
                <div class="form-floating">
                    <select class="form-select" id="yearSelect" name="award-year" aria-label="Select A Year"
                            onchange="showMonth(this.value)">
                                            </select>
                    <label for="yearSelect">年份</label>
                </div>
            </div>
            <div class="col-md mb-3">
                <div class="form-floating">
                    <!-- Month options are dynamically populated in JavaScript -->
                    <select class="form-select" id="monthSelect" name="award-month" aria-label="Select A month"
                            onchange="showCategory(yearSelect.value, this.value)">
                    </select>
                    <label for="monthSelect">月份</label>
                </div>
            </div>
            <div class="col-md mb-3">
                <div class="form-floating">
                    <!-- Category options are dynamically populated in JavaScript -->
                    <select class="form-select" id="categorySelect" name="award-category"
                            aria-label="Select A Category">
                        <option value="">全部</option>
                    </select>
                    <label for="categorySelect">奖项类别</label>
                </div>
            </div>
        </div>
        <div class="row justify-content-center">
            <div class="col-auto pt-3 pb-5">
                <button type="submit" class="btn btn-primary">提交</button>
            </div>
        </div>
    </form>
    
    <script>
        // Store award options for JavaScript use
        let award_options = null;
        let translations = {"months":{"1":"\u4e00\u6708","2":"\u4e8c\u6708","3":"\u4e09\u6708","4":"\u56db\u6708","5":"\u4e94\u6708","6":"\u516d\u6708","7":"\u4e03\u6708","8":"\u516b\u6708","9":"\u4e5d\u6708","10":"\u5341\u6708","11":"\u5341\u4e00\u6708","12":"\u5341\u4e8c\u6708"},"categories":[],"all":"\u663e\u793a\u6240\u6709"};
        let month_translations = translations.months;
        let category_translations = translations.categories;

        // Function to show Month options based on selected Year
        function showMonth(year) {
            let monthSelect = document.getElementById('monthSelect');
            monthSelect.innerHTML = '';
            let year_option = award_options.find(option => option.year == year);
            year_option.option.forEach(option => {
                let monthOpt = document.createElement('option');
                monthOpt.value = option.month;
                // Convert month number to month name
                let monthName = month_translations[option.month];
                monthOpt.innerHTML = monthName;
                monthOpt.selected = option.month == '';
                monthSelect.appendChild(monthOpt);
            });
            showCategory(year, monthSelect.value);
        }


        // Function to show Category options based on selected Year and Month
        function showCategory(year, month) {
            let categorySelect = document.getElementById('categorySelect');
            categorySelect.innerHTML = '';
            let year_option = award_options.find(option => option.year == year);
            let month_option = year_option.option.find(option => option.month == month);

            let categoryOpt = document.createElement('option');
            categoryOpt.value = '';
            categoryOpt.innerHTML = translations['all'];
            categorySelect.appendChild(categoryOpt);

            month_option.option[0]['category-id'].forEach((categoryId, index) => {
                let categoryOpt = document.createElement('option');
                categoryOpt.value = categoryId;
                categoryOpt.innerHTML = category_translations[categoryId]; // Use translated category name here
                categoryOpt.selected = categoryId == '';
                categorySelect.appendChild(categoryOpt);
            });
        }

        // Show Month options on page load
        window.onload = function () {
            let yearSelect = document.getElementById('yearSelect');
            showMonth(yearSelect.value);
        }
    </script>
    <script>
        // Form submit handler
        function handleFormSubmit(form) {
            // Iterate over form elements
            for (let i = 0; i < form.elements.length; i++) {
                let element = form.elements[i];
                // If the element is a select and its value is empty, remove its name attribute
                if (element.tagName.toLowerCase() === 'select' && element.value === '') {
                    element.removeAttribute('name');
                }
            }
            return true;
        }
    </script>
            <div class="row justify-content-center">
            <div class="col-auto py-5">
                <h4 class="text-center"></h4>
            </div>
        </div>
        <div class="row">
                    </div>
        {"id":2762,"date":"2023-05-23T20:20:55","date_gmt":"2023-05-23T12:20:55","guid":{"rendered":"https:\/\/huttonsgroup.com\/%e6%9c%80%e4%bd%b3%e8%a1%a8%e7%8e%b0%e5%92%8c%e9%a2%86%e8%a2%96\/"},"modified":"2023-07-16T13:14:57","modified_gmt":"2023-07-16T05:14:57","slug":"top-performers-and-leaders","status":"publish","type":"page","link":"https:\/\/www.huttonsgroup.com\/zh-hans\/top-performers-and-leaders\/","title":{"rendered":"\u6700\u4f73\u8868\u73b0\u548c\u9886\u8896"},"content":{"rendered":"<p>[et_pb_section fb_built=&#8221;1&#8243; _builder_version=&#8221;4.21.0&#8243; background_color=&#8221;RGBA(255,255,255,0)&#8221; hover_enabled=&#8221;0&#8243; global_colors_info=&#8221;{}&#8221; theme_builder_area=&#8221;post_content&#8221; custom_padding=&#8221;0px||0px||true|false&#8221; sticky_enabled=&#8221;0&#8243;][et_pb_row _builder_version=&#8221;4.16&#8243; background_size=&#8221;initial&#8221; background_position=&#8221;top_left&#8221; background_repeat=&#8221;repeat&#8221; global_colors_info=&#8221;{}&#8221; theme_builder_area=&#8221;post_content&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;4.16&#8243; custom_padding=&#8221;|||&#8221; global_colors_info=&#8221;{}&#8221; custom_padding__hover=&#8221;|||&#8221; theme_builder_area=&#8221;post_content&#8221;][et_pb_text _builder_version=&#8221;4.16&#8243; background_size=&#8221;initial&#8221; background_position=&#8221;top_left&#8221; background_repeat=&#8221;repeat&#8221; global_colors_info=&#8221;{}&#8221; theme_builder_area=&#8221;post_content&#8221;][\/et_pb_text][\/et_pb_column][\/et_pb_row][\/et_pb_section]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>[et_pb_section fb_built=&#8221;1&#8243; _builder_versio [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2337,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_et_pb_use_builder":"off","_et_pb_old_content":"","_et_gb_content_width":"","footnotes":""},"class_list":["post-2762","page","type-page","status-publish","has-post-thumbnail","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\r\n<title>\u6700\u4f73\u8868\u73b0\u548c\u9886\u8896 - \u5408\u767b\u96c6\u56e2<\/title>\r\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\r\n<link rel=\"canonical\" href=\"https:\/\/www.huttonsgroup.com\/top-performers-and-leaders\/\" \/>\r\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\r\n<meta property=\"og:type\" content=\"article\" \/>\r\n<meta property=\"og:title\" content=\"\u6700\u4f73\u8868\u73b0\u548c\u9886\u8896 - \u5408\u767b\u96c6\u56e2\" \/>\r\n<meta property=\"og:description\" content=\"[et_pb_section fb_built=&#8221;1&#8243; _builder_versio [&hellip;]\" \/>\r\n<meta property=\"og:url\" content=\"https:\/\/www.huttonsgroup.com\/top-performers-and-leaders\/\" \/>\r\n<meta property=\"og:site_name\" content=\"\u5408\u767b\u96c6\u56e2\" \/>\r\n<meta property=\"article:publisher\" content=\"https:\/\/www.youtube.com\/c\/huttonsgroup\" \/>\r\n<meta property=\"article:modified_time\" content=\"2023-07-16T05:14:57+00:00\" \/>\r\n<meta property=\"og:image\" content=\"https:\/\/www.huttonsgroup.com\/wp-content\/uploads\/top_leader_banner.jpg\" \/>\r\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\r\n\t<meta property=\"og:image:height\" content=\"600\" \/>\r\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\r\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\r\n<meta name=\"twitter:label1\" content=\"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 \u5206\" \/>\r\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.huttonsgroup.com\\\/top-performers-and-leaders\\\/\",\"url\":\"https:\\\/\\\/www.huttonsgroup.com\\\/top-performers-and-leaders\\\/\",\"name\":\"\u6700\u4f73\u8868\u73b0\u548c\u9886\u8896 - \u5408\u767b\u96c6\u56e2\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.huttonsgroup.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.huttonsgroup.com\\\/top-performers-and-leaders\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.huttonsgroup.com\\\/top-performers-and-leaders\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.huttonsgroup.com\\\/wp-content\\\/uploads\\\/top_leader_banner.jpg\",\"datePublished\":\"2023-05-23T12:20:55+00:00\",\"dateModified\":\"2023-07-16T05:14:57+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.huttonsgroup.com\\\/top-performers-and-leaders\\\/#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.huttonsgroup.com\\\/top-performers-and-leaders\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\\\/\\\/www.huttonsgroup.com\\\/top-performers-and-leaders\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.huttonsgroup.com\\\/wp-content\\\/uploads\\\/top_leader_banner.jpg\",\"contentUrl\":\"https:\\\/\\\/www.huttonsgroup.com\\\/wp-content\\\/uploads\\\/top_leader_banner.jpg\",\"width\":1920,\"height\":600},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.huttonsgroup.com\\\/top-performers-and-leaders\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.huttonsgroup.com\\\/zh-hans\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u6700\u4f73\u8868\u73b0\u548c\u9886\u8896\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.huttonsgroup.com\\\/#website\",\"url\":\"https:\\\/\\\/www.huttonsgroup.com\\\/\",\"name\":\"\u5408\u767b\u96c6\u56e2\",\"description\":\"\u65b0\u52a0\u5761\u6700\u5927\u7684\u79c1\u4eba\u623f\u5730\u4ea7\u7ecf\u7eaa\u516c\u53f8\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.huttonsgroup.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.huttonsgroup.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"zh-Hans\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.huttonsgroup.com\\\/#organization\",\"name\":\"Huttons Asia Pte. Ltd.\",\"url\":\"https:\\\/\\\/www.huttonsgroup.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\\\/\\\/www.huttonsgroup.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.huttonsgroup.com\\\/wp-content\\\/uploads\\\/huttons-logo-800x800-1.jpg\",\"contentUrl\":\"https:\\\/\\\/www.huttonsgroup.com\\\/wp-content\\\/uploads\\\/huttons-logo-800x800-1.jpg\",\"width\":800,\"height\":800,\"caption\":\"Huttons Asia Pte. Ltd.\"},\"image\":{\"@id\":\"https:\\\/\\\/www.huttonsgroup.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.youtube.com\\\/c\\\/huttonsgroup\",\"https:\\\/\\\/bit.ly\\\/HtnsBiliBili\",\"https:\\\/\\\/instagram.com\\\/huttonsgroup\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/huttons-group?trk=mini-profile\",\"https:\\\/\\\/huttonsgroup.substack.com\\\/\",\"https:\\\/\\\/www.threads.net\\\/@huttonsgroup\",\"https:\\\/\\\/www.tiktok.com\\\/@huttonsgroup\",\"https:\\\/\\\/bit.ly\\\/HtnsWechat\",\"https:\\\/\\\/bit.ly\\\/HtnsWeibo\",\"https:\\\/\\\/bit.ly\\\/HtnsXHS\",\"https:\\\/\\\/www.youtube.com\\\/c\\\/Huttonsgroup\",\"https:\\\/\\\/bit.ly\\\/HtnsZhihu\"]}]}<\/script>\r\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u6700\u4f73\u8868\u73b0\u548c\u9886\u8896 - \u5408\u767b\u96c6\u56e2","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.huttonsgroup.com\/top-performers-and-leaders\/","og_locale":"zh_CN","og_type":"article","og_title":"\u6700\u4f73\u8868\u73b0\u548c\u9886\u8896 - \u5408\u767b\u96c6\u56e2","og_description":"[et_pb_section fb_built=&#8221;1&#8243; _builder_versio [&hellip;]","og_url":"https:\/\/www.huttonsgroup.com\/top-performers-and-leaders\/","og_site_name":"\u5408\u767b\u96c6\u56e2","article_publisher":"https:\/\/www.youtube.com\/c\/huttonsgroup","article_modified_time":"2023-07-16T05:14:57+00:00","og_image":[{"width":1920,"height":600,"url":"https:\/\/www.huttonsgroup.com\/wp-content\/uploads\/top_leader_banner.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4":"1 \u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.huttonsgroup.com\/top-performers-and-leaders\/","url":"https:\/\/www.huttonsgroup.com\/top-performers-and-leaders\/","name":"\u6700\u4f73\u8868\u73b0\u548c\u9886\u8896 - \u5408\u767b\u96c6\u56e2","isPartOf":{"@id":"https:\/\/www.huttonsgroup.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.huttonsgroup.com\/top-performers-and-leaders\/#primaryimage"},"image":{"@id":"https:\/\/www.huttonsgroup.com\/top-performers-and-leaders\/#primaryimage"},"thumbnailUrl":"https:\/\/www.huttonsgroup.com\/wp-content\/uploads\/top_leader_banner.jpg","datePublished":"2023-05-23T12:20:55+00:00","dateModified":"2023-07-16T05:14:57+00:00","breadcrumb":{"@id":"https:\/\/www.huttonsgroup.com\/top-performers-and-leaders\/#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.huttonsgroup.com\/top-performers-and-leaders\/"]}]},{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/www.huttonsgroup.com\/top-performers-and-leaders\/#primaryimage","url":"https:\/\/www.huttonsgroup.com\/wp-content\/uploads\/top_leader_banner.jpg","contentUrl":"https:\/\/www.huttonsgroup.com\/wp-content\/uploads\/top_leader_banner.jpg","width":1920,"height":600},{"@type":"BreadcrumbList","@id":"https:\/\/www.huttonsgroup.com\/top-performers-and-leaders\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.huttonsgroup.com\/zh-hans\/"},{"@type":"ListItem","position":2,"name":"\u6700\u4f73\u8868\u73b0\u548c\u9886\u8896"}]},{"@type":"WebSite","@id":"https:\/\/www.huttonsgroup.com\/#website","url":"https:\/\/www.huttonsgroup.com\/","name":"\u5408\u767b\u96c6\u56e2","description":"\u65b0\u52a0\u5761\u6700\u5927\u7684\u79c1\u4eba\u623f\u5730\u4ea7\u7ecf\u7eaa\u516c\u53f8","publisher":{"@id":"https:\/\/www.huttonsgroup.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.huttonsgroup.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"zh-Hans"},{"@type":"Organization","@id":"https:\/\/www.huttonsgroup.com\/#organization","name":"Huttons Asia Pte. Ltd.","url":"https:\/\/www.huttonsgroup.com\/","logo":{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/www.huttonsgroup.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.huttonsgroup.com\/wp-content\/uploads\/huttons-logo-800x800-1.jpg","contentUrl":"https:\/\/www.huttonsgroup.com\/wp-content\/uploads\/huttons-logo-800x800-1.jpg","width":800,"height":800,"caption":"Huttons Asia Pte. Ltd."},"image":{"@id":"https:\/\/www.huttonsgroup.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.youtube.com\/c\/huttonsgroup","https:\/\/bit.ly\/HtnsBiliBili","https:\/\/instagram.com\/huttonsgroup","https:\/\/www.linkedin.com\/company\/huttons-group?trk=mini-profile","https:\/\/huttonsgroup.substack.com\/","https:\/\/www.threads.net\/@huttonsgroup","https:\/\/www.tiktok.com\/@huttonsgroup","https:\/\/bit.ly\/HtnsWechat","https:\/\/bit.ly\/HtnsWeibo","https:\/\/bit.ly\/HtnsXHS","https:\/\/www.youtube.com\/c\/Huttonsgroup","https:\/\/bit.ly\/HtnsZhihu"]}]}},"_links":{"self":[{"href":"https:\/\/www.huttonsgroup.com\/zh-hans\/wp-json\/wp\/v2\/pages\/2762","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.huttonsgroup.com\/zh-hans\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.huttonsgroup.com\/zh-hans\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.huttonsgroup.com\/zh-hans\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.huttonsgroup.com\/zh-hans\/wp-json\/wp\/v2\/comments?post=2762"}],"version-history":[{"count":0,"href":"https:\/\/www.huttonsgroup.com\/zh-hans\/wp-json\/wp\/v2\/pages\/2762\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.huttonsgroup.com\/zh-hans\/wp-json\/wp\/v2\/media\/2337"}],"wp:attachment":[{"href":"https:\/\/www.huttonsgroup.com\/zh-hans\/wp-json\/wp\/v2\/media?parent=2762"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}