我将以下html转换为haml:
%input#insurance_isp_payment{ checked: "checked",type: "radio",name: "insurance_isp_payment",price: 27.22,value: "single"} 27,22 €
现在我想从选中的单选按钮获取此价格值.我试过这样的事情:
$('input[name=insurance_isp_payment]:checked').data("price")
但这不起作用.我怎么解决这个问题?
解决方法
试试这个:而不是data()使用attr()来获取价格值.
var price = $('input[name="insurance_isp_payment"]:checked').attr("price"); alert(price);