<script> jQuery(document).ready(function($) { //PC環境の場合 if (window.matchMedia('(min-width: 768px)').matches) { //切り替える画面サイズ $.ajax({ url: '<?php echo esc_url( get_template_directory_uri() ); ?>/js/pc.js', dataType: 'script', cache: false }); //スマホ環境の場合 } else { $.ajax({ url: '<?php echo esc_url( get_template_directory_uri() ); ?>/js/sp.js', dataType: 'script', cache: false }); }; }); </script>
HTML jQuery WordPress 2020.4.24