错题
<button id="add">添加</button>
<div>
<input type="text" class="a" value="0">
<input type="text" class="b" value="0">
<div class="c">求和:</div>
</div>
$('#add').click(function(){
$('body').append('<div><input type="text" class="a" value="0">//value,a的初始值为0
<input type="text" class="b" value="0"><div class="c">求和:</div>
</div>')});
$('body').on('click','c',function(){
var i=$('this').sibling('a').val();//val,a的值
var j=$('this').sibling('b').val();
var count=fun(i,j);
$('this').html('求和:<span>'+count+'</span>');});
function fun(a,b){
var count=parseInt(a)+parseInt(b);
return count;}//自动求和框
css动态样式:animate.style
swiper切换图片:https://www.swiper.com.cn/
实现简单计算机,分别输入两个数和一个运算符号,计算结果
方法1:function ab(a,b,c){
var i=parseInt(a);
var j=parseInt(b);
var count;
if(c=='+'){count=i+j;}
else if(c=='-'){count=i-j;}
else if(c=='*'){count=i*j;}
else if(c=='/'){count=i/j;}
return count;
}
方法2:function ab(a,b,c)
{var count;
count=eval(a+c+b);}
找出数列的规律1,5,17,53,161,并用函数得到第十个数的值;提示n*3+2
function fn(n){
if(n==1){return 1;}
else{return fn(n-1)*3+2};}
fn(10);
div+a表示div外的a标签
乘法表