Created
December 7, 2012 12:48
-
-
Save dyng/4233046 to your computer and use it in GitHub Desktop.
把多个input框的内容拼接成一条字符串
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var serial_code = $("#serial-code-input>input").map(function(){ | |
return this.value; | |
}).get().join(''); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment