gpt4 book ai didi

javascript - 单击()获取类名

转载 作者:行者123 更新时间:2023-11-28 10:00:36 25 4
gpt4 key购买 nike

更新:评论者告诉我更改一些代码,这是新代码,它也不起作用。

我正在创建类似 Facebook 的聊天。它从 JSON 文件获取最新消息“未读”,并将文本通过“LI”附加到框中的“UL”元素。如果该框不存在,它将创建并附加文本。我希望当我单击该 div 时,它会使用 margin-bottom 负数隐藏,当我再次单击它时,它会显示为 Margin-Bottom:0。请帮助我,因为它不起作用。

function showChat(id){
$(this).animate({marginBottom : "0"}).removeClass("hidden_box").addClass("active_box").removeAttr('onclick').click(function(){
hideChat(Id);
});

}
function hideChat(id){
$(this).animate({marginBottom : "-270px"}).removeClass("active_box").addClass("hidden_box").click(function(){
showChat(Id);
});

}

function getOnJSON(){

//Creating Variables that will be used
var from;var to;var msg_id;var msg_txt;

//Getting the data from the json file
$.getJSON("/ajax/chat.json.php",function(data){

//Repeat for each result
$.each(data.notif, function(i,data){

//Getting a var to info
from = data.from;to = data.to;msg_id = data.id;msg_txt = data.text;

//check if div exists
if ($("#chat_"+from+"_lp").length === 0){

//If not, create the div
$("#boxes").append('<div id="chat_'+from+'_lp" class="chat_box hidden_box clickable_box"></div>');

//Add the senders name
$("#chat_"+from+"_lp").append('<div id="'chat_+from+'_nick" class="chat_name">'+from+'</div>');

//Add the chats UL
$("#chat_"+from+"_lp").append('<ul id="chat_'+from+'_txt" class="chat_txt"></ul>');

//Add the message text
$("#chat_"+from+"_lp").append('<li id="' + msg_id + '">'+ msg_txt+'</li>');

//Add event handler for each div
$('#chat_'+from+'_lp').click(function() {showChat(this);});

//If div exists just add the text
}else{

//Add the message text
$("#chat_"+from+"_txt").append('<li id="' + msg_id + '">'+ msg_txt+'</li>');

//Add event handler for each document
$('#chat_'+from+'_lp').click(function() {showChat(this);});

//Close If
}
//Close data for each item
});

//Close JSON
});

//Close Function
}

更新 2:为了停止创建和追加内容,我制作了一个将要追加的唯一 HTML 字符串。

new_chat_string = '<div id="chat_'+from+'_lp" class="chat_box hidden_box clickable_box"><div id="'chat_+from+'_nick" class="chat_name">'+from+'</div><ul id="chat_'+from+'_txt" class="chat_txt"><li id="' + msg_id + '">'+ msg_txt+'</li></ul></div>';

$("#boxes").append(new_chat_string);

最佳答案

使用类而不是id

<div id="chat_sender_lp" class="chat_box hidden_box clickable_box sender-click"

然后

$('.hidden_box.sender-click').live('click', function(){
$(this).slideToggle(500);
});

关于javascript - 单击()获取类名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9241928/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com