gpt4 book ai didi

javascript - jquery 在表单中选择 div 类并添加值

转载 作者:行者123 更新时间:2023-12-03 07:06:16 24 4
gpt4 key购买 nike

我的模式中有一个表单,我可以选择:

$(".my-modal").click(function () {
var app_modal = $(this).next('.modal').modal({backdrop: 'static'})
var frm = app_modal.next('.myform')
console.log(frm)
frm.on('submit', function(event){
event.preventDefault();
frm.class('.result').html('<div>Hellooww</div>');
});

我的表格是:

<form class="myform">
<div class="results"></div>
some form element
</form>

这里我想在类.results上放置一些html,但我无法做到这一点。表单位于django模板中的表单循环中

我该如何做到这一点?

最佳答案

jQuery 没有 .class() 函数。相反,如果结果元素是以下形式的后代,则可以使用 .find():

frm.find('.result').html('<div>Hellooww</div>');

如果结果元素是表单的同级元素,那么您可以转到父元素并像这样找到它

frm.parent().find('.result').html('<div>Hellooww</div>');

关于javascript - jquery 在表单中选择 div 类并添加值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36812578/

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