gwpxjb 发表于 2008-4-14 14:36:16

Prototype在CodeIgniter里的应用

首先,放置prototype相关文件

然后在视图文件进行调用
<head>
<title>发表话题</title>
<link rel="stylesheet" rev="stylesheet" href="{path}public/css/validation.css" type="text/css" />
<script type="text/javascript" src="{path}public/js/prototype.js" ></script>
<script type="text/javascript" src="{path}public/js/validation.js" ></script>
<script type="text/javascript" src="{path}public/js/validate.js" ></script>
</head>

跟着在需要校验的地方加入以前代码
   <tr>
    <td>标题:</td>
    <td><input type="text" name="title" class="required validate-title-pro" title="标题" span="标题不能为空,且字数不能超过50字"/><span></span></td>
   </tr>

最后在</body>前加入下边代码
<script language="javascript">
   if($('myform') != null)      
   var valid = new Validation('myform', {useTitles : true , immediate : true});
   if($('form') != null)      
   var valid_f = new Validation('form', {useTitles : true , immediate : true});
</script>

这样便可实现在CI中使用prototype进行校验

Hex 发表于 2008-4-14 14:42:18

感谢分享,加分,并且我帮你修改了一下代码高亮,呵呵~

gwpxjb 发表于 2008-4-14 14:44:32

我不会代码加亮:L 点那个〈〉后没反应:'(

Hex 发表于 2008-4-14 15:21:21

你自己看看我给你编辑的帖子代码啊,就学会了!!

gwpxjb 发表于 2008-4-14 15:51:21

看到了~学会了:D

sam 发表于 2008-10-15 23:19:07

踏破铁鞋无觅处,得来全不费工夫。。。正在使用,很好很强大
页: [1]
查看完整版本: Prototype在CodeIgniter里的应用