2012年11月20日火曜日

iframe をキャッシュさせないためにURLの末尾をランダムにする

iframe をキャッシュさせないためにURLの末尾をランダムにする

<script language="JavaScript">
document.write("<iframe src='theme/iframe_youtube.html? " + Math.random()+ "' width=190 height=190 scrolling=no frameborder=0 /></iframe>");
</script>

<noscript>
     <iframe src="theme/iframe_youtube.html" width="190px" height="190px" scrolling="no" frameborder="0"></iframe>
</noscript>

【Power Automate】Microsoft Forms自動返信で「回答がない項目」の「質問と回答」を非表示にするテクニック&ループ処理による効率化

はじめに MS Formsで注文フォームやアンケートを作った際、Power Automateと連携して「受付完了メール」を自動送信している方は多いと思います。 以前、回答のみ表示しない方法を紹介しましたが、今回は回答が無 […] 投稿元: Microsoft Power Auto...