使用基於jQuery 構建的庫遷移到ES6 語法的應用程式可能會導致有關jQuery的問題在新語法。
1.從node_modules目錄匯入
import * as stylesheet from '../assets/styles/app. scss';<br>import {$, jQuery} from 'jquery'; // 從node_modules導入<br>import * as jquery3 from '../dist/scripts/jquery.min';<p>console .log($('my-app'));<br>< ;/pre></p><p><strong>2.匯出其他腳本</strong></p><p></p><pre class="brush:php;toolbar:false">window.$ = $;<br>window.jQuery = jQuery;<br>
以上是如何在 ES6 語法中匯入 jQuery?的詳細內容。更多資訊請關注PHP中文網其他相關文章!