代码搜索:光信号检测
找到约 10,000 项符合「光信号检测」的源代码
代码结果 10,000
www.eeworm.com/read/274063/4190790
java userconnectinterceptor.java
package com.easyjf.web.core;
import com.easyjf.web.ActionContext;
import com.easyjf.web.interceptor.IRequestInterceptor;
/**
* 用户入侵检测载器
*
* @author 大峡
*
*/
public class UserConnect
www.eeworm.com/read/440141/1800857
java ispamchecker.java
package net.sf.pim.mail;
import java.io.InputStream;
/**
* 垃圾邮件检测器
* @author levin
* @date 2007.10.24
*/
public interface ISpamChecker {
public double checkSpamMail(InputStream mailTe
www.eeworm.com/read/158234/5597632
js common.js
//
// 检测登录表单填写是否合法
//
function CheckLoginForm()
{
if (document.UserLogin.UserName.value == "")
{
alert("请填写您的用户名!");
document.UserLogin.UserName.focus();
return false;
}
if (d
www.eeworm.com/read/158234/5597683
js common.js
//
// 检测登录表单填写是否合法
//
function CheckLoginForm()
{
if (document.UserLogin.UserName.value == "")
{
alert("请填写您的用户名!");
document.UserLogin.UserName.focus();
return false;
}
if (d
www.eeworm.com/read/158234/5597725
js common.js
//
// 检测登录表单填写是否合法
//
function CheckLoginForm()
{
if (document.UserLogin.UserName.value == "")
{
alert("请填写您的用户名!");
document.UserLogin.UserName.focus();
return false;
}
if (d
www.eeworm.com/read/158234/5597736
js common.js
//
// 检测登录表单填写是否合法
//
function CheckLoginForm()
{
if (document.UserLogin.UserName.value == "")
{
alert("请填写您的用户名!");
document.UserLogin.UserName.focus();
return false;
}
if (d
www.eeworm.com/read/158234/5597787
js common.js
//
// 检测登录表单填写是否合法
//
function CheckLoginForm()
{
if (document.UserLogin.UserName.value == "")
{
alert("请填写您的用户名!");
document.UserLogin.UserName.focus();
return false;
}
if (d
www.eeworm.com/read/157912/5601956
js editor.js
var format = "HTML";
var initHTML = "";
var edit;
var RangeType;
var bEditMode = null;
// 浏览器版本检测
var BrowserInfo = new Object() ;
BrowserInfo.MajorVer = navigator.appVersion.match(/MSIE (.)/
www.eeworm.com/read/394049/8250534
java gamescreen.java
//创建日期 2005-4-25
//游戏窗口
//在这个类里检测碰撞。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。
//。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。
//源码爱好者整理下载——http://www.codefans.net
import javax.microedition ...