好吧,我正在使用instagram的API檢索配置文件圖像和用戶名。此外,我希望配置文件圖像在鼠標懸停在其上時消失。但是,這似乎並沒有工作,我不知道是否因爲img放在腳本標記內。我一直在尋找答案的時間,但我找不到任何答案。所以如果有人幫助我,我會很感激。jQuery fade不要使用放置在同一個腳本標記中的img標記
<script>
$(document).ready(function() {
$('#images').hover(function() {
$(".img").fadeTo("fast",0.5);
}, function() {
$(".img").fadeTo("fast",1);
});
$("input").keypress(function (event) {
if (event.which === 13) {
event.preventDefault();
$("#images").empty();
$.ajax({
type: 'GET',
url: 'get_info.php',
data: {keyword: $("input").val()},
dataType: 'JSON',
success:
function (jsonStr) {
$.each(jsonStr.data, function (index, element) {
$('#images').append("<div class='instaUser'><img class='img' src=" + element.profile_picture + " /><span class='username'>@" + element.username + "</span></div>");
});
}
});
}
});
});
</script>
+1上的學習收穫。正在考慮在懸停時使用事件代表團。 – Tim 2014-11-14 19:22:24
@卡爾安德烈謝謝,它的工作! – Sarah 2014-11-14 20:13:39