본문 바로가기
IT 자료

xrule을 jQuery로 실행하기

by 성곤 2017. 3. 23.
반응형

xrule.min.js



okky에서 여행매니아님께서 알려주신 방법입니다.


how to execute xrule.js by jquery



<script src="xrule.min.js"></script>
<script>
function f() {
    if (xr(document.getElementById("div1"))) {
        //모든데이터가 정상이면 여기로 옵니다. AJAX 통신 하면 됩니다.
        alert("ok");
    }
}
</script>
<div id="div1">
    <input data-xr="req() email()"><br>
    <input data-xr="req() num()">
</div>
<button onclick="f()">GO</button>



출처 : http://okky.kr/article/380856


다운로드 : xrule download

한글 설명 : https://www.slideshare.net/JinhyunSim/xrule

반응형