gpt4 book ai didi

javascript - 通过选中单选按钮选择 Ajax 调用

转载 作者:行者123 更新时间:2023-11-30 17:23:53 24 4
gpt4 key购买 nike

这是我的示例代码。单击单选按钮时,应检查 if 条件并触发以下 ajax 调用。但它总是触发第一个 ajax 调用

$(document).ready(function (){
$('#save').click(function (event)
{
if ($("#im").is(":checked")) //check not working
{
$.get('../bus.php',
{
fxn: 'A',
jsn: '{"name":"' + name + '"}'
});
}
else if ($("#gm").is(":checked"))
{
$.get('../bus.php',
{
fxn: 'B',
jsn: '{"name":"' + name + '"}'
});
}
else
{
$.get('../bus.php',
{
fxn: 'C',
jsn: '{"name":"' + name + '"}'
});
}
});});

<html>
<body>
<input type=radio name="radio1" value="1" id="im"><label>A</label>
<input type=radio name="radio1" value="2" id="gm"><label>B</label>
<input type=radio name="radio1" value="3" id="am"><label>c</label>
</body>

最佳答案

该代码也非常适合我。

$(document).ready(function () {
$('#save').click(function (event) {
if ($("#im").is(":checked")) //check not working
{
$.get("http://api.openweathermap.org/data/2.5/weather?q=London",function( data ){

console.log(data);
});

} else if ($("#gm").is(":checked")) {
$.get("http://api.openweathermap.org/data/2.5/weather?q=LosAngeles",function( data ){
console.log(data);
});
} else {
$.get("http://api.openweathermap.org/data/2.5/weather?q=NewYork",function( data ){
console.log(data);
});
}
});

});

http://jsfiddle.net/2P72N/

您确定问题不在“fxn”参数管理中的 php 代码中吗?

关于javascript - 通过选中单选按钮选择 Ajax 调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24646432/

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