gpt4 book ai didi

jQuery - 在 ID 属性中发布引用带有小数点的单选按钮

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

这可能不是最好的方法,但我有一个单选按钮字段,如下所示:

<input type="radio" id="option_3_11_9.95">

以及具有类似命名约定的其他单选按钮,旨在代表不同的购物车选项。用户提交他们选择的选项并进行进一步处理。

但是,由于 ajax/jquery 表单/提交的设置方式,如果用户想要返回选择屏幕以更改他们的选择,就会出现复杂情况。长话短说,为了重新选择他们选择的单选按钮,我目前运行一个 getJSON 函数,它返回有关他们选择的选项的数据如下,并尝试以编程方式重新检查适当的单选按钮:

var feature_id = featureID;
$.getJSON("/cfcs/cart.cfc?method=blah&returnformat=json&queryformat=column", {"feature_id":featureID},function(res,code) {
if(res.ROWCOUNT > 0){
var price = (Math.round(res.DATA.PRICE*100)/100).toFixed(2).toString(); //ensure 2 decimal places and string
var option_id = res.DATA.OPTION_ID;
var str = featureID + "_" + option_id + "_" + price;
alert(str); // alerts "3_11_9.95"
alert($("#option_" + str).attr("id")); // alerts "undefined"
alert($("#option_" + str).attr("checked")); // alerts "undefined"
$("#option_" + str).attr("checked","checked"); // doesn't work obviously
}
})

最佳答案

\\转义

$('#option_3_11_9\\.95')

Check Fiddle

关于jQuery - 在 ID 属性中发布引用带有小数点的单选按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17768403/

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