var dw=function(string){
document.write(string+"-Hello");
}
<h1><script>dw("Hi")</script></h1> //Hi-Hello
これは正常に機能します。しかし、このヘッダーを折りたたみ可能なものの中に入れると、Hi-Helloが出力され、折りたたみ可能なものは表示されません。
<div data-role="collapsible">
<h3><script>dw("Hi")</script></h3>
<p>collapsible content.</p>
</div>
折りたたみ可能なヘッダーを変更するための回避策はありますか?