我需要在jQuery庫文件(john.js)中遠程包含jQuery庫。我沒有任何運氣嘗試過;如何在JavaScript中包含jQuery庫而不需要<script src =「」>
(function(d, t) {
var g = d.createElement(t), // create a script tag
s = d.getElementsByTagName(t)[0]; // find the first script tag in the document
g.src = 'http://code.jquery.com/jquery-latest.js'; // set the source of the script to your script
s.parentNode.insertBefore(g, s); // append the script to the DOM
}(document, 'script'));
$(document).ready(function() {
// My jquery works here
});
我想以javascript的方式獲取腳本。什麼是正確的方法來做到這一點?
你看過jQuery的getScript()函數嗎? http://api.jquery.com/jquery.getscript/ – Nate 2014-12-06 03:18:23
我想抓取jquery,而不是js。以及如何使用,當你沒有包含jQuery庫? getScript()是一個jQuery函數,而不是javascript。 – user198989 2014-12-06 03:21:41
但是您是否在研究其代碼的意義上看過'getScript()'以查看其工作原理? – nnnnnn 2014-12-06 03:24:15