我目前有一個相當簡單的頁面,由於某種原因,maincss.css沒有被應用,它只是簡單地將背景設置爲圖像。我知道它的工作原理是在我爲jquery樣式添加另一個css文件之前工作。那麼這是錯誤的?CSS沒有應用到頁面
<html xmlns=\ "http://www.w3.org/1999/xhtml\" xml:lang=\"en\">
<head>
<META HTTP-EQUIV="Content-Script-Type" CONTENT="text/javascript">
<title>Welcome to Jetty-9</title>
<link href="css/jquery-ui-1.10.3.custom.css" rel="stylesheet">
<link href="css/maincss.css" rel="stylesheet">
<script type='text/javascript' src='js/jquery.js'></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
<script type="text/javascript">
$(function() {
$("#dialog").dialog({
width: 400,
buttons: [
{
text: "Ok",
click: function() {
$(this).dialog("close");
}
},
{
text: "Cancel",
click: function() {
$(this).dialog("close");
}
}
]
});
});
</script>
</head>
<body>
<div id="dialog" title="Basic dialog">
<p>This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p>
</div>
</body>
</html>
上面的代碼沒什麼問題,請使用chrome或firefox,看看你有沒有錯誤或警告,當你檢查元素或按F12。謝謝 – abc123
我不相信任何路徑是不正確的,因爲當我查看頁面源並單擊它們正確打開的每個.js和.css文件時 – AggieDev
圖像的路徑是否正確? – Mathletics