代码搜索:数字器件
找到约 10,000 项符合「数字器件」的源代码
代码结果 10,000
www.eeworm.com/read/319544/3555589
js ccheck.js
//验证数字
function postalcode(input)
{ var number = "1234567890";
var temp;
var j=0;
for (var i = 0; i < input.length; i++ )
{
temp = input.substring(i,i+1);
i
www.eeworm.com/read/315047/3626034
cs program.cs
using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace WinApp10_2数字加密示例
{
static class Program
{
///
/// 应用程序的主入口点。
www.eeworm.com/read/280107/4128223
h resource.h
//{{NO_DEPENDENCIES}}
// Microsoft Visual C++ generated include file.
// Used by 手写数字识别系统.rc
//
#define IDR_MANIFEST 1
#define IDC_CLEAR 3
#define IDC_TR
www.eeworm.com/read/444990/1726923
js verify.js
/**
* @author WangShuhao
*/
/**
* 是否为数字
* @param {Object} value
*/
function Verify_Number(value)
{
var myReg = /^\d+$/;
if(myReg.test(value)) return true;
return false;
}
/**
* 身份证号码
* @
www.eeworm.com/read/358214/2999110
js verify.js
/**
* @author WangShuhao
*/
/**
* 是否为数字
* @param {Object} value
*/
function Verify_Number(value)
{
var myReg = /^\d+$/;
if(myReg.test(value)) return true;
return false;
}
/**
* 身份证号码
* @
www.eeworm.com/read/350902/3113466
js common.js
//输入的金额不能为空,且必须是数字格式
function netInputCheck(){
var netMoney = document.netBean.netMoney.value;
var testNetMoney = netMoney.match(/^\d+(\.\d{2})?$/);
if((netMoney=="")||(testNetMoney==
www.eeworm.com/read/350902/3113725
js common.js
//输入的金额不能为空,且必须是数字格式
function netInputCheck(){
var netMoney = document.netBean.netMoney.value;
var testNetMoney = netMoney.match(/^\d+(\.\d{2})?$/);
if((netMoney=="")||(testNetMoney==