今日の問題 次のガイドラインのうち今年(2024年)刊行されていないものはどれ? ① 関節リウマチ診療ガイドライン ② 便通異常症診療ガイドライン ③ 糖尿病診療ガイドライン ④ 熱中症診療ガイドライン ※回答はこちらからログインしてご確認ください 回答はこちら 正解は② 便通異常症診療ガイドラインです! ②は昨年7月に刊行された。①は今年4月、③は5月、④は7月に刊行されている。 関連記事 ・便秘症、GL参照で新機序薬の処方意向増 過去の問題 ・古代エジプトで頭痛の特効薬として用いられていたのは? ・1880年、日本で医療を目的に始まったものとして正しいのはどれ? ・夏の恒例行事、墨田川花火大会は疫病退散を祈って始まった。〇か✕か? // ログイン調査 $(document).ready(function () { // 医師のみの場合 // if (js_class == '医師・研修医') { // $('#answerButton').removeAttr('disabled'); // console.log('医師・研修医IDでログイン中'); // } // ログインしてるか?のみチェック if ('' != sf_id) { $('#answerButton').removeAttr('disabled'); $('#notLoggedText').hide(); } }); const answerButton = document.getElementById('answerButton') answerButton.addEventListener('click', function() { this.classList.toggle('active') const answer = this.nextElementSibling if (answer.style.maxHeight) { answer.style.maxHeight = null } else { answer.style.maxHeight = answer.scrollHeight + 'px' } })