gpt4 book ai didi

jquery - 如何获取插入的值类型

转载 作者:行者123 更新时间:2023-12-01 04:52:35 25 4
gpt4 key购买 nike

使用 jQuery .type我正在尝试获取插入值的类型。
例如,如果我在文本框中输入以下内容

  • 02/10/2012 那么它的类型是date
  • 我的测试 那么它的类型是string
  • 123 然后是其类型 number

这是我的代码,但它没有得到预期的结果,只有字符串

<!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>

最佳答案

所有输入值都是字符串

这是一个开始

Live Demo

function myType(str) {
if (str === undefined) return "undefined";
if (str === null) return "null";
if (str.length===0) return "empty string";
if (!isNaN(str) && /\d/.test(str)) return "number";
if (Date.parse(str)) return "parsable date";
return "string";
}
$(document).ready(function(){
$('input').on('blur',function(){
var text =$(this).val();
var t = myType(text);
window.console && console.log(text,t);
});
});

关于jquery - 如何获取插入的值类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18039844/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com