我有一個HTML文件,它使用load()
方法jQuery調用其中的外部文件。 但是,主HTML文件中的CSS與外部文件的CSS衝突。我寫了一個例子。我怎樣才能防止它?jQuery多個CSS衝突
load.html
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>
function ext() {
$('#aaa').load('external.txt');
}
</script>
<body onLoad="ext()">
<style>
h1 {
color:green;
}
</style>
<h1>green</h1>
<div id="aaa"></div>
external.txt
<style>
h1 {
color:red;
}
</style>
<h1>red</h1>
PS:我的目的不是把類放到CSS文件如h1 #red
那麼你最終會得到什麼顏色? – adeneo
也是 - > http://stackoverflow.com/questions/2830296/using-style-tags-in-the-body-with-other-html – adeneo
他們都是紅色的 – halilkaya