Показать сообщение отдельно
  #10 (permalink)  
Старый 16.07.2011, 18:14
Новичок на форуме
Отправить личное сообщение для webkstu Посмотреть профиль Найти все сообщения от webkstu
 
Регистрация: 11.07.2011
Сообщений: 7

<html>
    <head>
        <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
        <title>JQuery Validation Engine</title>
        <link rel="stylesheet" href="http://fms.kursk.ru/opros/p/1/css/validationEngine.jquery.css" type="text/css"/>
        <link rel="stylesheet" href="http://fms.kursk.ru/opros/p/1/css/template.css" type="text/css"/>
        <script src="http://fms.kursk.ru/opros/p/1/js/jquery-1.6.min.js" type="text/javascript">
        </script>
        <script src="http://fms.kursk.ru/opros/p/1/js/languages/jquery.validationEngine-en.js" type="text/javascript" charset="utf-8">
        </script>
        <script src="http://fms.kursk.ru/opros/p/1/js/jquery.validationEngine.js" type="text/javascript" charset="utf-8">
        </script>
        <script>
            jQuery(document).ready(function(){
                // binds form submission and fields to the validation engine
                jQuery("#formID").validationEngine();
            });
        </script>
    </head>
    <body>
        <p>
            <a href="#" onclick="alert('is the form valid? '+jQuery('#formID').validationEngine('validate'))">Evaluate form</a>
            | <a href="#" onclick="jQuery('#formID').validationEngine('showPrompt', 'This is an example', 'pass')">Build a prompt on a div</a>
            | <a href="#" onclick="jQuery('#formID').validationEngine('hide')">Close all prompts</a>
            | <a href="index.html" onclick="">Back to index</a>
        </p>
        <p>
            This demonstration shows extended features around checkboxes
        </p>
        <form id="formID" class="formular" method="post" action="">
            <fieldset>
                <legend>
                    Phone
                </legend>
                <div>
                    <span>Radio Groupe : 
                        <br/>
                    </span>
                    <span>radio 1: </span>
                    <input class="validate[required] radio" type="radio" name="group0" id="radio1" value="5"/><span>radio 2: </span>
                    <input class="validate[required] radio" type="radio" name="group0" id="radio2" value="3"/><span>radio 3: </span>
                    <input class="validate[required] radio" type="radio" name="group0" id="radio3" value="9"/>
                </div>
                <div>
                    <span>Minimum 2 checkbox : 
                        <br/>
                    </span>
                    <input class="validate[minCheckbox[2]] checkbox" type="checkbox" name="group1" id="maxcheck1" value="5"/>
					<input class="validate[minCheckbox[2]] checkbox" type="checkbox" name="group1" id="maxcheck2" value="3"/>
					<input class="validate[minCheckbox[2]] checkbox" type="checkbox" name="group1" id="maxcheck3" value="9"/>
                </div>
                <div>
                    <span><b>Maximum</b> 2 checkbox : 
                        <br/>
                    </span>
                    <input class="validate[maxCheckbox[2]] checkbox" type="checkbox" name="group2" id="maxcheck4" value="5"/>
					<input class="validate[maxCheckbox[2]] checkbox" type="checkbox" name="group2" id="maxcheck5" value="3"/>
					<input class="validate[maxCheckbox[2]] checkbox" type="checkbox" name="group2" id="maxcheck6" value="9"/>
                </div>
                
                
            </fieldset>
            <fieldset>
                <legend>
                    Conditions
                </legend>
                <div class="infos">
                    Checking this box indicates that you accept terms of use. If you do not accept these terms, do not use this website : 
                </div>
                <label>
                    <span class="checkbox">I accept terms of use : </span>
                    <input class="validate[required] checkbox" type="checkbox" id="agree" name="agree"/>
                </label>
            </fieldset><input class="submit" type="submit" value="Validate & Send the form!"/><hr/>
        </form>
    </body>
</html>
Ответить с цитированием