我让aI需要通过.onblur验证输入,这样每当文本输入失去焦点时,它就会由相同的JS函数进行验证。
我的问题是JS函数。我想要获取失去焦点的项目的价值。
function valid(){
if (isNaN("this should be the value of the text item??")){
}
谢谢..。
当第一次选择日期时,日期输入字段无效。
Its showing required error message, because of field have an empty value(_check console log_). But field will be valid on second change.
注意:原因之一是日期输入字段在选择日期时失去焦点(单击事件)。但是,只有在发生单击事件时才会更改日期。但是,验证器将在焦点事件上验证字段。
我正在使用验证一个表单,对Widget使用。
^^为了更好地运行完整页面上的代码片段;)或
从@Sparky / @Vignesh :是
对于使用CKEditor非常陌生,我对我一直收到的jQuery验证错误感到困惑。我的项目是C# MVC,并利用UnobtrusiveJavascript和不引人注目的验证插件。
我有一个通过HtmlHelper构建的文本区域:
@Html.TextAreaFor(model => model.BookSummary, new { id = "bookMainInfo" })
下面是我创建编辑器所做的工作。当打开页面时,它将替换文本区域:
var theEditor;
// Load CKEditor in place of the information table