使用 jQuery .type我试图获取插入值的类型。
例如,如果我在文本框中输入以下内容
02/10/2012
那么它的类型是date
my test
那么它的类型是string
123
然后它的类型number
这是我的代码,但它没有得到预期的结果,只有string
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery.type demo</title>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
</head>
<body>
Type <b></b>
<script>
$(document).ready(function(){
$('#input').on('blur',function(){
var text = $('input').val();
if(text!==null) {
alert(text);
var t = jQuery.type(text);
alert(t);
}
else {
alert('get');
}
});
});
</script>
<input type='text' id='input'/>
</body>
</html>