想看更多 Oserio 歐瑟若 專利心率體重體脂計 試用心得請到以下網址>>
https://www.justwoman.tw/trialreport3.aspx?pid=560&id=1
https://www.justwoman.tw
本文皆為本人親自試用過後的體驗心得(非商業性質)僅供參考。產品成分及功效說明,引用商品或官網(含粉絲團)所載,不等於宣稱具有療效,每個人使用習慣、體質膚質不同,實際效果依每人體驗為主。
'; return new Promise((resolve, reject) => { if (typeof navigator !== "undefined" && typeof navigator.clipboard !== "undefined" && navigator.permissions !== "undefined") { const type = "text/plain"; const blob = new Blob([text], { type }); const data = [new ClipboardItem({ [type]: blob })]; navigator.permissions.query({ name: "clipboard-write" }).then((permission) => { if (permission.state === "granted" || permission.state === "prompt") { $('.copyMsg').html("複製原始碼完成").show().delay(2600).fadeOut(); navigator.clipboard.write(data).then(resolve, reject).catch(reject); } else { reject(new Error("Permission not granted!")); } }); } else if (document.queryCommandSupported && document.queryCommandSupported("copy")) { var textarea = document.createElement("textarea"); textarea.textContent = text; textarea.style.position = "fixed"; textarea.style.width = '2em'; textarea.style.height = '2em'; textarea.style.padding = 0; textarea.style.border = 'none'; textarea.style.outline = 'none'; textarea.style.boxShadow = 'none'; textarea.style.background = 'transparent'; document.body.appendChild(textarea); textarea.focus(); textarea.select(); try { document.execCommand("copy"); $('.copyMsg').html("複製原始碼完成").show().delay(2600).fadeOut(); document.body.removeChild(textarea); resolve(); } catch (e) { document.body.removeChild(textarea); reject(e); } } else { reject(new Error("None of copying methods are supported by this browser!")); } }); }