Я бы хотел внедрить jQuery на страницу с помощью API библиотек Google AJAX. Я нашел следующее решение:
http://my -domain.com / инъекционные-jquery.js :
;((function(){
// Call this function once jQuery is available
var func = function() {
jQuery("body").prepend('<div>jQuery Rocks!</div>');
};
// Detect if page is already using jQuery
if (!window.jQuery) {
var done = false;
var head = document.getElementsByTagName('head')[0];
var script = document.createElement("script");
script.src = "http://www.google.com/jsapi";
script.onload = script.onreadystatechange = function(){
// Once Google AJAX Libraries API is loaded ...
if (!done && (!this.readyState || this.readyState == "loaded" || this.readyState == "complete")) {
done = true;
// ... load jQuery ...
window.google.load("jquery", "1", {callback:function(){
jQuery.noConflict();
// ... jQuery available, fire function.
func();
}});
// Prevent IE memory leaking
script.onload = script.onreadystatechange = null;
head.removeChild(script);
}
}
// Load Google AJAX Libraries API
head.appendChild(script);
// Page already using jQuery, fire function
} else {
func();
}
})());
Затем сценарий будет включен на страницу в отдельном домене:
http://some -other-domain.com / page.html
<html>
<head>
<title>This is my page</title>
</head>
<body>
<h1>This is my page.</h1>
<script src="http://my-domain.com/inject-jquery.js"></script>
</body>
</html>
В Firefox 3 я получаю следующую ошибку:
Module: 'jquery' must be loaded before DOM onLoad! jsapi (line 16)
Ошибка, по-видимому, связана с API библиотек Google AJAX, поскольку я видел, как другие используют букмарклет jQuery для внедрения jQuery на текущую страницу. Мой вопрос:
- Существует ли способ внедрения API библиотек Google AJAX / jQuery на страницу независимо от состояния onload / onready?