我有一個按鈕在使用JQuery UI的animate()懸停和懸停時改變顏色。點擊時,該按鈕會通過AJAX加載頁面。事情是,一旦我點擊那個按鈕,animate()似乎不工作,它只是凍結在一種顏色。在AJAX加載後,JQuery UI animate()不起作用()
<!DOCTYPE html>
<html>
<head>
<title>Jquerytest</title>
<link rel="stylesheet" href="styles.css" />
<script src="lib/jquery-3.1.1.js"></script>
<script src="lib/jquery-ui-1.11.2/jquery-ui.js"></script>
<script>
$('document').ready(function() {
var menubutton_animation = 200;
$('.menubutton').hover(function(){
$(this).animate({ color: "#D1571F" }, menubutton_animation);
}, function(){
$(this).animate({ color: "#000000" }, menubutton_animation);
});
$('.menubutton').click(function(){
$('#targetframe').load('portfolio.html');
});
});
</script>
</head>
<body>
<input class="menubutton" type="button" value="Portfolio" id="portfolio">
<div id="targetframe"></div>
</body>
</html>
的styles.css中包含此:
@font-face {
font-family: 'Comfortaa';
src: url('Comfortaa.eot'),
url('Comfortaa.ttf') format('truetype');
}
.menubutton {
height:40px;
background:transparent;
border:none;
color:#000000;
cursor: pointer;
font-family:Comfortaa;
font-size:30px;
}
預先感謝您。
在單擊按鈕後,開發者控制檯中是否顯示任何錯誤? –
只是這個XMLHttpRequest錯誤:主線程上的同步XMLHttpRequest已被棄用,因爲它對最終用戶的體驗有不利影響。如需更多幫助,請查看https://xhr.spec.whatwg.org/。我不認爲它是相關的 – gabyarg25