Сообщение от Nekromancer
|
cyber,
рекулярка то накой?
|
при таком содержание инпута
56765,6757657
ваш код вернет такой массив
["56765", "6757657"]
<!DOCTYPE HTML>
<html>
<head> </head>
<body>
<input type="text" value="2312,21312,123">
<input type="button" value="go">
<script>
var inp = document.body.children[0];
var bt = document.body.children[1] ;
alert(inp.value.split(",").length);
bt.onclick = function () {
alert(inp.value.split(",").length);
}
</script>
</body>
</html>