我已經下載了jquery-validation-1.14.0.zip來自web的文件。並且知道我正在嘗試在我的項目中使用它,但是與我的問題是我不知道將文件夾(提取的文件)放在我的wamp文件夾中的確切位置,以及對所有文件夾config或.htaccess文件。因爲我已經給了我所有完整的3-4天來完成我自己的配置,但最後沒有任何選擇,我在這裏發佈我的問題,這樣任何人都可以幫助我。 基本上這是我的 夾sructure; - C:\瓦帕\ WWW \顯影劑\ jquery的驗證如何使用eclipse-mars在我的codeigniter項目中設置jquery插件IDE
控制器: - C:\瓦帕\ WWW \顯影劑\應用\控制器
如何使用調用在我看來,腳本文件: -
<html>
<head>
<script type="text/javascript" src ="../jquery-validation/lib/jquery.js"> </script>
<script type="text/javascript" src ="../jquery-validation/dist/jquery.validate.js"> </script>
</head>
而且我想EM另一件事這裏的phasis是在eclipse-mars中,我也包含了jquery庫。現在我有JavaScript資源裏面的jQuery 2.0庫。
做完所有這些,當我只是嘗試使用警報功能,我看到了很多錯誤。 錯誤: -
GET http://localhost/developer/index.php/jquery-validation/lib/jquery.js [HTTP/1.1 404未找到27ms]
GET http://localhost/developer/index.php/jquery-validation/dist/jquery.validate.js [HTTP/1.1 404未找到30毫秒]
的ReferenceError:$沒有定義
請給我幹掉所有這些無論如何..現在我完全沮喪.. 非常非常感謝提前..
問題仍然相同@praveen和@ ichadhr。更多的澄清我的代碼,這裏是一個簡單的觀點:
<html>
<head>
<script type="text/javascript" src ="<?php echo base_url('jquery-validation/lib/jquery.js');?>" ></script>
<script type="text/javascript" src ="<?php echo base_url('jquery-validation/dist/jquery.validate.js');?>"></script>
</head>
<body>
<form method="post" id="myform">
<div class="form-group">
<label for="name">Name:</label>
<input type="text" class="form-control" name="name" id="name">
</div>
<button type="submit" class="btn btn-default" id="sub">Submit</button>
</form>
<script>
$("#sub").click(function(){
alert("hello");
$("#myform").valid();
});
</script>
</body>
</html>
我的基本URL爲localhost /開發商
和JS文件的文件夾和文件位置是在我的代碼。
錯誤仍然相同
試試這個'' – ichadhr