我存在实时验证的问题。 I use thisscript 为了证实某些形式,我需要作一些改动,我不知道如何做这些改动。 曼 谷 我显示错误信息概述了形式(所有电文的一个箱子)? 让我在一页角的盒子上说话(不要像现在这样说的每一项投入)。 如果是,谁知道如何? 此外,我还需要一项规则,以检查一项投入是否独特(用户可在不同领域添加同样的价值)。 也许人人都知道这一选择的另一条文字。 谁能帮助我? 在联合材料中,我是新的,我必须这样做。
Thanks a lot!
我存在实时验证的问题。 I use thisscript 为了证实某些形式,我需要作一些改动,我不知道如何做这些改动。 曼 谷 我显示错误信息概述了形式(所有电文的一个箱子)? 让我在一页角的盒子上说话(不要像现在这样说的每一项投入)。 如果是,谁知道如何? 此外,我还需要一项规则,以检查一项投入是否独特(用户可在不同领域添加同样的价值)。 也许人人都知道这一选择的另一条文字。 谁能帮助我? 在联合材料中,我是新的,我必须这样做。
Thanks a lot!
您不妨使用。 这是你要求做的事。
你可以制定自己的验证规则,这样你就可以实现每个投入箱要求的独特价值。
There is an event you can hook into jqv.form.result
to push a message into a specific div and also to perform some additional validation, you could push your own error messages back into the errorFound
object.
jQuery("#formID").validationEngine();
$("#formID").bind("jqv.form.validating", function (event) {
$("#hookError").html("");
});
$("#formID").bind("jqv.form.result", function (event, errorFound) {
if (errorFound) $("#hookError").append("There is some problems with your form");
});
<form id="formID" class="formular" method="post" action="">
<div id="hookError" style="color:red; font-weight:bold;height:20px;"></div>
我先看一下图书馆的源代码,最适当的是检查<代码>errorfound的物体,这些物体已输入<编码>jqv.form.result。 带有灯塔的光灯光灯的活动手,可以通过收集错误信息,将其写进<代码>hook Error div。
How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.
I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...
Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...
Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...
I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...
Is it possible for someone to give me a few pointers on how to display a multidimensional array in the form of a bar graph? The array is multidimensional, with three elements in each part - and the ...
Is it possible to reload a form after file-input change? I have a form where the user can chose an image for upload. I also have a php script which displays that image resized. I only wonder if it ...
I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.