在javascript中,从以字母开头的字符串(例如"test [123]")解析INT的最佳方法是什么?我需要一些适合下面例子的东西.
我的JS:
$(document).ready(function() { $(':input').change( function() { id = parseInt($(this).attr("id")); //fails for the data below alert(id); }); }
我生成的HTML:
谢谢!
您可以使用正则表达式来匹配数字:
$(this).attr("id").match(/\d+/)
parseInt(input.replace(/[^0-9-]/,""),10)