使用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>
那麼......它給了什麼結果呢? –
@Kolink'string' –
所有輸入值都是字符串 – mplungjan