代码搜索:validate
找到约 3,608 项符合「validate」的源代码
代码结果 3,608
www.eeworm.com/read/250058/12438874
css validate_numerical_field.css
body
{
font-size: 85%;
font-family: Arial, Helvetica, sans-serif;
}
label
{
float: left;
width: 6em;
}
input
{
display: block;
margin-left: 6em;
margin-bottom: 1em;
}
www.eeworm.com/read/250058/12438891
css validate_email_field.css
body
{
font-size: 85%;
font-family: Arial, Helvetica, sans-serif;
}
label
{
float: left;
width: 6em;
}
input
{
display: block;
margin-left: 6em;
margin-bottom: 1em;
}
www.eeworm.com/read/250058/12438945
js validate_email_field.js
addLoadListener(init);
function init()
{
var submit = document.getElementById("submit");
submit.onclick = validate;
return true;
}
function validate()
{
var textField = document.getElementB
www.eeworm.com/read/250058/12438948
js validate_numerical_field.js
addLoadListener(init);
function init()
{
var submit = document.getElementById("submit");
submit.onclick = validate;
return true;
}
function validate()
{
var textField = document.getElementB
www.eeworm.com/read/124165/14592390
asp p423_validate.asp
function Validate()
{
if (document.myForm.username.value == "")
{
alert("Enter your name, please!");
return false
www.eeworm.com/read/218623/14911998
m mil_train_validate.m
function run = MIL_train_validate(data_file, classifier)
global preprocess;
clear run;
% The statistics of dataset
% [X, Y, num_data, num_feature] = Preprocessing(D);
% num_class = length(pre
www.eeworm.com/read/218623/14912005
m mil_cross_validate.m
% Input pararmeter:
% data_file: data file, including the feature data and output class
function run = MIL_cross_validate(data_file, classifier_wrapper_handle, classifier)
global preprocess;
www.eeworm.com/read/218623/14912114
m mil_test_validate.m
function run = MIL_test_validate(data_file, classifier)
global preprocess;
clear run;
% The statistics of dataset
%[X, Y, num_data, num_feature] = Preprocessing(D);
%num_class = length(prepro
www.eeworm.com/read/38039/1105885