JSFiddle - React, Tailwind, and code Playground

by jq153387

HTML

目前視窗寬度:<span></span>

JavaScript

$(document).ready(function(){
    $(window).resize(function() {
        wdth=$(window).width();
      $("span").text(wdth);
    });
});