標題:[教學]使用JavaScript引入jQuery
或:[教學]如何從 JavaScript import jQuery?
或:import jQuery frome JavaScript
本篇文章網址:https://corettainformation.blogspot.com/2021/01/jsjquery.html
最近有個需求,就是要在執行期間導入jQuery,困擾我了一會兒,但還是找到解法了,只要在JavaScript中輸入以下四行就行:
var script = document.createElement('script');
script.src = 'https://code.jquery.com/jquery-3.4.1.min.js';
script.type = 'text/javascript';
document.getElementsByTagName('head')[0].appendChild(script);
當然,在瀏覽器中按F12開啟主控台,並輸入以上四行,也能在任何網站中引入jQuery。
參考資料:
https://stackoverflow.com/questions/1140402/how-to-add-jquery-in-js-file
沒有留言:
張貼留言
有興趣或有疑問的歡迎提問與交流喔!!!