私はプラグインを作成しています。以下のコードがあります。
私がやろうとしているのは、彼らが入力したメールアドレスが有効であることを確認することです。メールアドレスが有効でない場合にonOKを停止する方法がわからないだけです。
ありがとう
これはプラグインのコードスニペットです
contents : [
{
id : 'info',
label : editor.lang.form.title,
title : editor.lang.form.title,
elements : [
{
id : 'destEmail',
type : 'text',
label : 'Email form results to:',
'default' : 'randy@me.com',
required : true,
accessKey : 'T',
commit : function( element )
{
var emailRegEx = /^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$/i;
if (this.getValue().search(emailRegEx) == -1) {
alert("Please enter a valid email address.");
return false;
}
element.setAttribute('id', this.getValue() );
}
}
]
}
]