gpt4 book ai didi

javascript - django ajax请求获取选定的索引

转载 作者:太空宇宙 更新时间:2023-11-03 21:04:20 25 4
gpt4 key购买 nike

我使用 django AJAX 请求从我的 django 表单中获取一些数据并使用此 manual 返回一些信息。在本手册中,ajax 脚本使用更改功能从选择的 html 中获取数据并正确工作。

就我而言,我需要在用户访问此页面时首先从所选索引中获取数据,如果更改该选项,则需要更改功能。但我不知道该怎么做

html:

<select id="id_username">
<option>user1</option>
<option>user2</option>
<option>user3</option>
<option>user4</option>
<option>user5</option>
</select>

其中某些被选择了几次

使用更改功能的ajax脚本:

$("#id_username").change(function () {
var id_user'= $("#id_username").val();
var form = $(this).closest("form");
$.ajax({
url: form.attr("data-validate-username-url"),
data: {'id_user': id_user},
dataType: 'json',
success: function (data) {
$('#info_user_1').text(data.user);
}
}
});
});

JavaScript 获取所选索引:

var id_pel = $('#id_username').find(":selected").text();
console.log(id_pel);

最佳答案

请更具体地说明您的问题。顺便说一句,此代码将不起作用,因为 select 的选择器 id 是 select_form 并且在 javascript 中您使用 id_username 作为选择器。

关于javascript - django ajax请求获取选定的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55524632/

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