如何使用 Javascript 创建第二个逻辑结构。
是一个网页,当它加载时(DOM 还没有准备好)正在执行 javascipt 代码,其中:
<script>
if(window.innerWidth>900){
/* show huge HTML with javascript stuff here */
} else {
/* show huge HTML with javascript stuff here */
}
</script>
我想要与 PHP 语言中的第二个代码示例类似的东西:
<? if(true){ ?>
/* show huge HTML with javascript stuff here */
<? } else { ?>
/* show huge HTML with javascript stuff here */
<? } ?>
当页面加载时,我需要在初始化窗口宽度时使用不同的 html javascript 代码。