gpt4 book ai didi

jQuery 使用 ID 创建新的 div?

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

我的 ASP.NET masterPage.master 中有表单,如果我单击提交,它会通过 ajax 从 masterPage.master.cs 文件中调用一些方法(我在更新面板中有它)。但我想用 jQuery 改进它。所以我有这个:

$('#submit').click(function () {
$.ajax({
type: "POST",
url: '<% Response.Write("~"+Request.Path); %>',
beforeSend: function () {
$(document.createElement('div')).width($('#formBox').width())
.height($('#formBox').height())
.css({ backgroundImage: 'url(/Static/Img/bc_overlay.png)', position: 'absolute', left: 0, top: 0, margin: "5px", textAlign: "center", color: "#000", display: "none" })
.append("<strong>Načítám</strong><br /><img src='Static/Img/ajax-loader.gif' width='33px' height='33px' alt='loading' />")
.fadeIn("slow")
.prependTo($('#formBox'));
$('#formBox').css('position', 'relative');
},
success: function () {
}
});
});

因此,如果我点击提交,就会创建新的 div(加载文本和图像,以及很酷的不透明叠加层),但是我如何给这个 div 一些 ID?因为我需要使用它在

success: function () {
}

我需要清除此框并在此处写一些文本(错误或成功)。

最佳答案

在创建时设置属性即可

$(document.createElement('div')).attr('id', 'theID')//rest of code

关于jQuery 使用 ID 创建新的 div?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5314537/

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