gpt4 book ai didi

Javascript/JQuery 将值保存到文件

转载 作者:行者123 更新时间:2023-11-28 21:18:38 24 4
gpt4 key购买 nike

我的页面中有一些单选按钮,我需要保存它们的值或选择到文件中的任何值。

这里是一个示例代码:

 <input name="select" type="radio" value="a" />
<input name="select" type="radio" value="b" />
<input name="select" type="radio" value="c" />
<input name="select" type="radio" value="d" />

每当用户选择一个时,我都需要将其保存/附加到文件中。

可能吗?

更新:

尝试过这个:

<script>
$(document).ready(function () {

$("input[name='select']").change(function(e) {
e.preventDefault();
$.post("zzz.html", { selectedValue : $(this).val() }, function(response) {
// do something with server response
alert('saved');
});
});



});
</script>

结果:无结果。没有创建任何内容/没有保存任何内容。

最佳答案

$("button").click(function(){
$.post('save_values.php', $("form").serialize(), function(){
alert('saved');
});
return false;
});

关于Javascript/JQuery 将值保存到文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6964059/

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