function getStyleSheet(unique_title) { for (const sheet of document.styleSheets) { if (sheet.title === unique_title) { return sheet; } } }
確定! 回上一頁