{"id":1986,"date":"2025-10-09T10:52:39","date_gmt":"2025-10-09T03:52:39","guid":{"rendered":"https:\/\/idda.tbs-staging.com\/%e6%88%91%e7%9a%84%e8%81%8c%e4%b8%9a%e7%94%9f%e6%b6%af\/"},"modified":"2026-01-16T14:10:20","modified_gmt":"2026-01-16T07:10:20","slug":"career","status":"publish","type":"page","link":"https:\/\/idda.tbs-staging.com\/zh-hans\/career\/","title":{"rendered":"\u6211\u7684\u804c\u4e1a\u751f\u6daf"},"content":{"rendered":"\n\n<h2  data-animation-delay=\"0\" data-animation-duration=\"1\">\n\t\t\t\u5728IDDA\uff0c\u6211\u4eec\u4e3a\u6709\u624d\u534e\u548c\u5145\u6ee1\u70ed\u60c5\u7684\u4eba\u4eec\u63d0\u4f9b\u673a\u4f1a\u3002 \t<\/h2>\n\t<p>\u5f00\u59cb\u6253\u9020\u5c5e\u4e8e\u4f60\u81ea\u5df1\u7684\u6210\u529f\u4e4b\u8def\u3002\u5728\u8fd9\u91cc\uff0c\u4f60\u5c06\u83b7\u5f97\u4e13\u4e1a\u56e2\u961f\u7684\u652f\u6301\uff0c<br \/>\u4ee5\u53ca\u4e00\u79cd\u9f13\u52b1\u521b\u65b0\u3001\u81f4\u529b\u4e8e\u521b\u9020\u5bf9\u4e2a\u4eba\u548c\u793e\u4f1a\u4ea7\u751f\u79ef\u6781\u5f71\u54cd\u7684\u6709\u610f\u4e49\u7684\u5de5\u4f5c\u7684\u6587\u5316\u6c1b\u56f4\u3002<\/p>\n\t\u5f00\u59cb\u6253\u9020\u5c5e\u4e8e\u4f60\u81ea\u5df1\u7684\u6210\u529f\u4e4b\u8def\u3002\u5728\u8fd9\u91cc\uff0c\u4f60\u5c06\u83b7\u5f97\u4e13\u4e1a\u56e2\u961f\u7684\u652f\u6301\uff0c<br \/>\n\u4ee5\u53ca\u4e00\u79cd\u9f13\u52b1\u521b\u65b0\u3001\u81f4\u529b\u4e8e\u521b\u9020\u5bf9\u4e2a\u4eba\u548c\u793e\u4f1a\u4ea7\u751f\u79ef\u6781\u5f71\u54cd\u7684\u6709\u610f\u4e49\u7684\u5de5\u4f5c\u7684\u6587\u5316\u6c1b\u56f4\u3002\n\t\t\t<a href=\"\/zh-hans\/contact\/\" target=\"_self\">\n\t\t\t\t\t\t\t\u8054\u7cfb\u6211\u4eec\n\t\t\t<\/a>\n<h2>\n\t\t\t\u4e0e\u6211\u4eec\u5408\u4f5c\t<\/h2>\n\t<p>\u641c\u7d22\u7a7a\u7f3a\u804c\u4f4d<\/p>\n\t    <div id=\"page-search\" style=\"margin-bottom:1em; place-self: center;\">\n      <input type=\"text\" id=\"findText\" placeholder=\"\u641c\u7d22\u8bcd\" style=\"padding:6px 20px; border:1px solid #81848A; width:250px; border-radius:30px;\">\n      <button id=\"findButton\" style=\"padding:12px 20px; background:#31326E; color:#fff; border:1px solid #31326E; border-radius:30px; cursor:pointer;\">\n       \t\t\u641c\u7d22      <\/button>\n    <\/div>\n\n    <script>\n    document.addEventListener(\"DOMContentLoaded\", function() {\n      const input = document.getElementById(\"findText\");\n      const button = document.getElementById(\"findButton\");\n      const body = document.body;\n      let currentIndex = -1;\n      let matches = [];\n\n      button.addEventListener(\"click\", function() {\n        const term = input.value.trim();\n        if (!term) {\n          clearHighlights();\n          currentIndex = -1;\n          matches = [];\n          return;\n        }\n\n        \/\/ If same term as before, move to next match\n        if (matches.length && matches[0].textContent.toLowerCase() === term.toLowerCase()) {\n          currentIndex = (currentIndex + 1) % matches.length;\n          scrollToCurrent();\n          return;\n        }\n\n        \/\/ Otherwise, perform new search\n        clearHighlights();\n        currentIndex = -1;\n        matches = [];\n\n        const re = new RegExp(term, \"gi\");\n        highlight(body, re);\n\n        matches = Array.from(document.querySelectorAll(\"mark.page-find\"));\n        if (matches.length) {\n          currentIndex = 0;\n          expandAccordionsFor(matches);\n          scrollToCurrent();\n        } else {\n          alert(\"No matches found on this page.\");\n        }\n      });\n\n      function scrollToCurrent() {\n        matches.forEach(m => m.classList.remove(\"page-find-active\"));\n        const current = matches[currentIndex];\n        if (current) {\n          expandAccordionsFor([current]);\n          current.classList.add(\"page-find-active\");\n          current.scrollIntoView({ behavior: \"smooth\", block: \"center\" });\n        }\n      }\n\n      \/\/ \ud83d\udd39 New: Expand hidden accordion sections that contain matches\n      function expandAccordionsFor(elems) {\n        elems.forEach(el => {\n          const accordionContent = el.closest('.uabb-adv-accordion-content');\n          if (accordionContent) {\n            accordionContent.style.display = 'block';\n            accordionContent.setAttribute('aria-hidden', 'false');\n            accordionContent.setAttribute('aria-expanded', 'true');\n\n            const parentAccordion = accordionContent.closest('.uabb-adv-accordion');\n            if (parentAccordion) {\n              const button = parentAccordion.querySelector('.uabb-adv-accordion-button');\n              if (button) {\n                button.classList.add('uabb-acc-active'); \/\/ mimic UABB open state\n              }\n            }\n          }\n        });\n      }\n\n      function clearHighlights() {\n        body.querySelectorAll(\"mark.page-find\").forEach(el => {\n          const parent = el.parentNode;\n          parent.replaceChild(document.createTextNode(el.textContent), el);\n          parent.normalize();\n        });\n      }\n\n      function highlight(node, regex) {\n        if (node.nodeType === 3) { \/\/ text node\n          const match = node.data.match(regex);\n          if (match) {\n            const mark = document.createElement(\"mark\");\n            mark.className = \"page-find\";\n            const parts = node.data.split(regex);\n            const frag = document.createDocumentFragment();\n\n            parts.forEach((part, i) => {\n              frag.appendChild(document.createTextNode(part));\n              if (i < parts.length - 1) {\n                const m = mark.cloneNode();\n                m.textContent = match[0];\n                frag.appendChild(m);\n              }\n            });\n            node.parentNode.replaceChild(frag, node);\n          }\n        } else if (node.nodeType === 1 && node.childNodes && !\/(script|style)\/i.test(node.tagName)) {\n          node.childNodes.forEach(child => highlight(child, regex));\n        }\n      }\n    });\n    <\/script>\n\n    <style>\n    mark.page-find {\n      background: yellow;\n      color: black;\n    }\n    mark.page-find-active {\n      background: orange;\n      outline: 2px solid orange;\n    }\n    #findButton:hover {\n      background:#005f8c;\n    }\n    <\/style>\n    \n\t\t\t\t\t\t<h5>\u673a\u68b0\u5de5\u7a0b\u5e08<\/h5>\n\t\t\t<p>Lorem Ipsum \u53ea\u662f\u5370\u5237\u548c\u6392\u7248\u884c\u4e1a\u7684\u793a\u4f8b\u6587\u672c\u3002<\/p>\n\t\t\t\t\t\t<h5>\u4f1a\u8ba1<\/h5>\n\t\t\t<p>Lorem Ipsum \u53ea\u662f\u5370\u5237\u548c\u6392\u7248\u884c\u4e1a\u7684\u793a\u4f8b\u6587\u672c\u3002<\/p>\n\t\t\t\t\t\t<h5>\u9500\u552e\u4ee3\u8868<\/h5>\n\t\t\t<p>Lorem Ipsum \u53ea\u662f\u5370\u5237\u548c\u6392\u7248\u884c\u4e1a\u7684\u793a\u4f8b\u6587\u672c\u3002<\/p>\n\t\t\t\t\t\t<h5>\u8d28\u91cf\u4e3b\u7ba1<\/h5>\n\t\t\t<p>Lorem Ipsum \u53ea\u662f\u5370\u5237\u548c\u6392\u7248\u884c\u4e1a\u7684\u793a\u4f8b\u6587\u672c\u3002<\/p>\n\t\t\t\t\t\t<h5>\u7535\u6c14\u5de5\u7a0b\u5e08<\/h5>\n\t\t\t<p>Lorem Ipsum \u53ea\u662f\u5370\u5237\u548c\u6392\u7248\u884c\u4e1a\u7684\u793a\u4f8b\u6587\u672c\u3002<\/p>\n\t\t\t\t\t\t<h5>\u751f\u4ea7\u4eba\u5458<\/h5>\n\t\t\t<p><strong>\u5de5\u4f5c\u8be6\u60c5\uff1a<\/strong><\/p>\n<ul>\n<li>\u6309\u7167\u516c\u53f8\u751f\u4ea7\u8ba1\u5212\u548c\u8d28\u91cf\u6807\u51c6\u5f00\u5c55\u751f\u4ea7\u4f5c\u4e1a\u3002<\/li>\n<li>\u5728\u6bcf\u4e2a\u751f\u4ea7\u6b65\u9aa4\u4e2d\u68c0\u67e5\u548c\u63a7\u5236\u5de5\u4ef6\u7684\u8d28\u91cf\u3002<\/li>\n<li>\u4e0e\u5de5\u7a0b\u56e2\u961f\u548c\u5176\u4ed6\u90e8\u95e8\u5408\u4f5c\uff0c\u63d0\u9ad8\u5236\u9020\u8fc7\u7a0b\u7684\u6548\u7387\u3002<\/li>\n<li>\u4e25\u683c\u9075\u5b88\u5de5\u4f5c\u5b89\u5168\u6807\u51c6<\/li>\n<\/ul>\n<p><strong>\u7279\u5f81\uff1a<\/strong><\/p>\n<ul>\n<li>\u5b66\u5386\u8981\u6c42\uff1a\u521d\u4e2d\u4e09\u5e74\u7ea7\u6216\u4ee5\u4e0a\u6216\u540c\u7b49\u5b66\u5386<\/li>\n<li>\u8ba4\u771f\u7ec6\u81f4\u5730\u5b8c\u6210\u5206\u914d\u7684\u4efb\u52a1\u3002<\/li>\n<li>\u5177\u5907\u826f\u597d\u7684\u56e2\u961f\u5408\u4f5c\u80fd\u529b\u548c\u6c9f\u901a\u80fd\u529b\u3002<\/li>\n<li>\u5177\u6709\u5de5\u4e1a\u751f\u4ea7\u7ecf\u9a8c\u8005\u4f18\u5148\u8003\u8651\u3002<\/li>\n<\/ul>\n<p><strong>\u8054\u7cfb\u6211\u4eec\uff1a<\/strong><\/p>\n<ul>\n<li>\u90ae\u7bb1\uff1ahr@idda.co.th<\/li>\n<li>\u7535\u8bdd\u53f7\u7801\uff1a0-1234-5678<\/li>\n<\/ul>\n\t\t\t\t\t\t<h5>\u540e\u52e4\u4eba\u5458<\/h5>\n\t\t\t<p>Lorem Ipsum \u53ea\u662f\u5370\u5237\u548c\u6392\u7248\u884c\u4e1a\u7684\u793a\u4f8b\u6587\u672c\u3002<\/p>\n\t\t\t\t<img decoding=\"async\" src=\"https:\/\/idda.tbs-staging.com\/wp-content\/uploads\/2025\/10\/Support-image1.webp\" alt=\"Support image1\" itemprop=\"image\" height=\"450\" width=\"850\" title=\"Support image1\" onerror=\"this.style.display='none'\" loading=\"lazy\" \/>\n<h2>\n\t\t\t\u968f\u65f6\u51c6\u5907\u4e3a\u60a8\u63d0\u4f9b\u652f\u6301\u7684\u798f\u5229<br \/>\t<\/h2>\n\t<p>\u6211\u4eec\u652f\u6301\u60a8\u7684\u5fc3\u7406\u3001\u751f\u7406\u3001\u60c5\u611f\u548c\u8d22\u52a1\u5065\u5eb7\uff0c\u4ee5\u4fbf\u60a8\u80fd\u591f\u6210\u957f\u548c\u6210\u529f\u3002<\/p>\n<h2>\n\t\t\t\u5956\u9879\u4e0e\u6210\u5c31\t<\/h2>\n\t<p>\u6211\u4eec\u6210\u529f\u7684\u8861\u91cf\u6807\u51c6\u5728\u4e8e\u6211\u4eec\u5458\u5de5\u7684\u624d\u80fd\u3002\u6bcf\u4e00\u9879\u5956\u9879\u90fd\u6e05\u6670\u5730\u8bc1\u660e\u4e86\u6211\u4eec\u5bf9\u6807\u51c6\u548c\u8d28\u91cf\u7684\u4e25\u683c\u628a\u63a7\u3002<\/p>\n\t\t\t\t<img decoding=\"async\" src=\"https:\/\/idda.tbs-staging.com\/wp-content\/uploads\/2025\/10\/Congratulation-image1.webp\" alt=\"Congratulation image1\" itemprop=\"image\" height=\"450\" width=\"850\" title=\"Congratulation image1\" onerror=\"this.style.display='none'\" loading=\"lazy\" \/>\n\n","protected":false},"excerpt":{"rendered":"<p>\u5728IDDA\uff0c\u6211\u4eec\u4e3a\u6709\u624d\u534e\u548c\u5145\u6ee1\u70ed\u60c5\u7684\u4eba\u4eec\u63d0\u4f9b\u673a\u4f1a\u3002 \u5f00\u59cb\u6253\u9020\u5c5e\u4e8e\u4f60\u81ea\u5df1\u7684\u6210\u529f\u4e4b\u8def\u3002\u5728\u8fd9\u91cc\uff0c\u4f60\u5c06\u83b7\u5f97\u4e13\u4e1a\u56e2\u961f\u7684\u652f [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1985,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-1986","page","type-page","status-publish","has-post-thumbnail","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/idda.tbs-staging.com\/zh-hans\/wp-json\/wp\/v2\/pages\/1986","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/idda.tbs-staging.com\/zh-hans\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/idda.tbs-staging.com\/zh-hans\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/idda.tbs-staging.com\/zh-hans\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/idda.tbs-staging.com\/zh-hans\/wp-json\/wp\/v2\/comments?post=1986"}],"version-history":[{"count":7,"href":"https:\/\/idda.tbs-staging.com\/zh-hans\/wp-json\/wp\/v2\/pages\/1986\/revisions"}],"predecessor-version":[{"id":2331,"href":"https:\/\/idda.tbs-staging.com\/zh-hans\/wp-json\/wp\/v2\/pages\/1986\/revisions\/2331"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/idda.tbs-staging.com\/zh-hans\/wp-json\/wp\/v2\/media\/1985"}],"wp:attachment":[{"href":"https:\/\/idda.tbs-staging.com\/zh-hans\/wp-json\/wp\/v2\/media?parent=1986"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}