<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
CDNをhttp→httpsに一括で置換したいです。
下記の方法だとできませんでした。
ご教授願います。
$(function() { $('script').each(function(){ var txt = $(this).html(); $(this).html( txt.replace("http", "https") ); }); });
回答2件
あなたの回答
tips
プレビュー