gpt4 book ai didi

jquery - 使用empty()后无法向div添加内容

转载 作者:行者123 更新时间:2023-12-01 07:16:04 26 4
gpt4 key购买 nike

我正在尝试将内容添加到 <div>使用后empty()在它的父级上。但不知何故,它行不通。为什么这不起作用?如果我不使用empty()事情有效。但为什么不使用 empty() 之后呢?

我正在尝试清空包含链接 .acceptUser 的父级。或.rejectUser并添加新的链接。新内容需要放入 parent div

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Side bar poll thingy</title>
<script type="text/javascript" src="http://localhost/site/scripts/jQueryCore.js"></script>
<script type="text/javascript" src="http://localhost/site/scripts/rsCore.js"></script>
<script type="text/javascript" src="http://localhost/site/scripts/jquery.validate.js"></script>
<script type="text/javascript">

$(document).ready(function() {
$('.acceptUser, .rejectUser').click(function() {

var action = $(this).attr('class');
var type = $(this).data('id');

console.log(action+' '+type);
console.log($(this).parent());

$(this).parent("div").empty();
// Wont work : $(this).parent("div").after("<div class='flag'>Success</div>");
// Wont work : $(this).parent("div").append("<div class='flag'>Success</div>");


});
});

</script>
</head>
<body>

<div id="container">
UserName : Norman | SignedUp: 10-09-2013 | SignedUp Location: US

<div class="adminLinks">
<span class="acceptUser" data-id="24">Accept</span>
<span class="rejectUser" data-id="24">Reject</span>
</div>

</div>

</body>
</html>

最佳答案

试试这个代码,

$(document).ready(function () {
$('.acceptUser, .rejectUser').click(function () {
var action = $(this).attr('class');
var type = $(this).data('id');
console.log(action + ' ' + type);
console.log($(this).parent());
var parentTag = $(this).parent("div");
parentTag.empty();
parentTag.after("<div class='flag'>Success</div>");
parentTag.append("<div class='flag'>Success</div>");
});
});

http://jsfiddle.net/E8UVE/

关于jquery - 使用empty()后无法向div添加内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18821781/

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