作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
完整代码如下
我想将变量中的数字添加到增量变量中,但它们不相加。相反,它们被连接起来。
这一行
countScroll-=parseInt(scrollWidth_g);
如果“scrollWidth_g”是300并且“countScroll”是10,我得到10300并且我想要310;
$(document).ready(function(e) {
var countScroll = 10;
$(document).on('click', '.scroller_g_nav', function(){
var nav = $(this).attr('data-nav');
var scrollWidth = $('.scroller_g').attr('data-scrollwidth');
if (typeof scrollWidth == 'undefined'){
var scrollWidth_g = 200;
} else {
var scrollWidth_g = scrollWidth;
}
if (nav == 'left'){
countScroll-=parseInt(scrollWidth_g);
$('.scroller_g').animate({scrollLeft:countScroll},600);
} else {
countScroll+=scrollWidth_g;
$('.scroller_g').animate({scrollLeft:countScroll},600);
}
});
});
最佳答案
减法时不需要解析字符串数字(“123”),但加法时需要解析。
Example: "12" - 1 = 11
"12" + 1 = 121 //here you need to parse string to number to get correct result
parseInt("12") + 1 = 11
It works :
if (nav == 'left'){
countScroll -= parseInt(scrollWidth_g);
$('.scroller_g').animate({scrollLeft:countScroll},600);
} else {
countScroll += parseInt(scrollWidth_g);
$('.scroller_g').animate({scrollLeft:countScroll},600);
}
关于javascript - 如何在javascript中通过另一个变量来增加一个变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31825230/
我是一名优秀的程序员,十分优秀!