我通常会看到版本 1,但我从事的一些开源项目使用版本 2,并且我过去使用过版本 3。有没有人有一个更优雅的解决方案,也许是一个更具可扩展性的解决方案?
版本 1:
var text1 = 'this is my script\'s content';
版本 2:
<script type="text/plain" id="text1">This is my content</script>
<script> var text1 = $('#text1').html(); </script>
版本 3:
<input type="hidden" id="text1" value="this is my content">
<script> var text1 = $('#text1').val(); </script>
版本 4:
<span class="hidden" id="text1">this is my content</span>