我想使用javascript添加两个具有数值的变量。
var seconds = 1100;
var time = 300;
var newV = seconds + time;
$('.show').html(newV);
但它是说未定义
感谢名单
答案 0 :(得分:2)
这个HTML可能就是你所缺少的
<div class="show"> </div>
你的代码
$(document).ready(function() {
var seconds = 1100;
var time = 300;
var newV = seconds + time;
$('.show').html(newV);
});