jqueryのajaxメソッドでデータを取得します。検索されたデータは次のようになります。ajax経由で文書にCSSを挿入するには?
<html>
<head>
<style>
body {
color: red;
font-weight: bold;
}
#someElement {
color: blue;
padding: 1em
}
</style>
</head>
<body>
<div id="header">Super</div>
<p>blah blah blah</p>
<div id="footer">Stuff</div>
</body>
</html>
スタイルを抽出し、それをajax呼び出しを実行している現在のドキュメントに挿入するにはどうすればよいですか?私はあらゆる種類のjquery呪文を試しましたが、それは行っていません。私は今、正規表現を経由してCSSを抽出するが、現在のページにCSSを置く方法がわからないよよ:作品
if($.browser.msie) {
$('head').html(
'<link rel="stylesheet" href="http://c.this/template.css" type="text/css" />'+
$('head').html()
);
}
else {
$('head').prepend('<link rel="stylesheet" href="http://c.this/template.css" type="text/css" />');
}
:単純に次のことをやった
$.ajax({
url: '/template.html',
success: function(data) {
$("#header").html($(data).find('#header').html());
$("#footer").html($(data).find('#footer').html());
var re = /<style>((?:[\n\r]|.)+)<\/style>/m;
var css = re.exec(data);
// What to do with the css??
return;
}
});
私は最初に、スタイルシートを持っていましたIE8以外ではいくつかの問題が発生します。
jQueryセレクタが要素を探しているようです「頭」のidを持つ。 '$(" head ")で試してみてください。html($ head)。html());' –
@joshその部分はうまくいきます。私はちょうど私がヘッド要素に興味がないことを示すために#headerの代わりに#headerと言うように例を更新しました。ありがとう。 – PaulS