我不确定我是否会很好地描述这一点......但是:
我有一个 div,我想在我的 jQuery 函数中使用 div 的 id 作为变量。
有一个与 ID 值同名的变量,并且它已经被声明为一个数字.. 此刻我得到 NaN。
我只需要变量 whatIsIt 作为 aqstn 登陆函数 - jsfiddle 有一个带有 id 的警报.. 但它不会转化为代码中的数量.. 如果你知道我的意思.! ?
为了更好地解释,这里有一个 js fiddle 的问题! http://jsfiddle.net/CpFqk/
jQuery:
$('.add').click(function() {
whatIsIt = $(this).attr('id');
alert (whatIsIt);
base = (base+whatIsIt);
// base = (base+aqstn); --> This works OK
// Some maths to get +- 15%
fifteen = (base*.15)
price1 = (base+fifteen)
price2 = (base-fifteen)
$(".price span.more").html(price1);
$(".price span.less").html(price2);
});