Welcome to Delicate template
Header
Just another WordPress site
Header

用jquery让数字自加

9月 12th, 2013 | Posted by 无 名 in jQuery | js

如何使用jquery让文本框的数字自加呢。
用下面的方法:

function adding(){
	var myval = ($("#number").val()-0) + 1;
	$("#number").val(myval);
	}
function decrease(){
	var myval = ($("#number").val()-0) - 1;
	if (myval>0){
		$("#number").val(myval);
		}
	}

如上代码,一个是自加函数,一个是自减函数。
为什么要减0,因为要把它转为整型。如果不减0,直接+1,就会变为11,等于是字符串相加了。
详细:http://blog.csdn.net/niuniu20008/article/details/6837669

You can follow any responses to this entry through the RSS 2.0 Both comments and pings are currently closed.