这个可以验证带小数部分的小数和不带小数点的整数
<script>
function verify(node)
{
var str = node.value
if(str.match(/^(:?(:?\d+.\d+)|(:?\d+))$/)) alert('match')
else alert('not match')
}
</script>
<input type=text id='txt' />
<input type=button onclick="verify(document.getElementById('txt'))" />
function getCotent(){var strtime=$('#strtime').val()
var endtime=$('#endtime').val()
if(endtime <strtime){
alert("提示:开始时间早于结束时间!")
return
}
$.get("{:U('getContent')}",{'strtime':strtime,'endtime':endtime},function(data){
$("#content").html("data")
})
}