Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
クリックすると開閉するスライダーがありますが、ページの読み込み時にも開くようにしましたが、問題はすべてのページで開くことです(すべてのページにあるため)。
どういうわけか、セッションごとに1回だけ自動的に開始することは可能ですか?
たとえば、php セッションを意味する場合:
$html = $someHtml; if (!isset($_SESSION['firstTime'])) { $html .= "<script>myJavaScriptFunction();</script>"; $_SESSION['firstTime'] = "Nope"; } echo $html;