load()を使用してみましたか? http://api.jquery.com/load/
私はそれがスクリプトを解析し、あなたのために実行する必要がありますと信じています。
EDIT:ISが問題ではありませんでしたか、私はそれを発見していないと負荷に関する
[OK]を、いずれかのビット()は使用されていません。そのことを念頭に置いて、スクリプトのストリッピングなしで新しいバージョンの負荷を作成しました。これはIE6,7,8、Chrome、Firefoxで動作するようです...
<script type="text/javascript">
$(function() {
setTimeout(function() {
$('#target').load2('inject.html #inject');
}, 5000);
});
jQuery.fn.extend({
load2: function(url, params, callback) {
if (typeof url !== "string" && _load) {
return _load.apply(this, arguments);
// Don't do a request if no elements are being requested
} else if (!this.length) {
return this;
}
var off = url.indexOf(" ");
if (off >= 0) {
var selector = url.slice(off, url.length);
url = url.slice(0, off);
}
// Default to a GET request
var type = "GET";
// If the second parameter was provided
if (params) {
// If it's a function
if (jQuery.isFunction(params)) {
// We assume that it's the callback
callback = params;
params = undefined;
// Otherwise, build a param string
} else if (typeof params === "object") {
params = jQuery.param(params, jQuery.ajaxSettings.traditional);
type = "POST";
}
}
var self = this;
// Request the remote document
jQuery.ajax({
url: url,
type: type,
dataType: "html",
data: params,
// Complete callback (responseText is used internally)
complete: function(jqXHR, status, responseText) {
// Store the response as specified by the jqXHR object
responseText = jqXHR.responseText;
// If successful, inject the HTML into all the matched elements
if (jqXHR.isResolved()) {
// #4825: Get the actual response in case
// a dataFilter is present in ajaxSettings
jqXHR.done(function(r) {
responseText = r;
});
// See if a selector was specified
self.html(selector ?
// Create a dummy div to hold the results
jQuery("<div>")
// inject the contents of the document in, removing the scripts
// to avoid any 'Permission Denied' errors in IE
.append(responseText/*.replace(rscript, "")*/)
// Locate the specified elements
.find(selector) :
// If not, just inject the full result
responseText);
}
if (callback) {
self.each(callback, [responseText, status, jqXHR]);
}
}
});
return this;
}
});
</script>
最初にレスポンスを埋め込み、関連するコードを含むjavascriptファイルをロードすることは可能です... jquery deferrendを使用することができます... – Rafay
これは実際には不可能です。外部JSがすべて読み込まれます。これはページ上のものを初期化するための関数呼び出しです。この関数は完全に静的ではない引数を受け取ります(そうでなければ、HTMLにJSコードはありません)。 – ThiefMaster