こんにちは、私はWeb開発を勉強しています。このサイトの新機能です.JQueryとCodeIgniterでdatepickerを表示する問題があります。すべてのヘルプは非常に高く評価されるだろう。ここCodeigniter JQuery datepicker issue
は私のコードは
VIEW
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Welcome to Kinsale property</title>
<link type="text/css" rel="stylesheet" href="<?php echo base_url('jquery-ui-1.12.0/jquery-ui.css'); ?>" />
</head>
<body>
<div id="container">
<h1>Welcome to Kinsale Property!</h1>
<script type="text/javascript">
$(function() {
$("#datepicker").datepicker({
minDate : 0,
dateFormat: 'yy-mm-dd'
});
});
</script>
<!--load jquery-->
<script src="<?php echo base_url('jquery-ui-1.12.0/jquery-1.10.2.js'); ?>"></script>
<!--load jquery ui js file-->
<script src="<?php echo base_url('jquery-ui-1.12.0/jquery-ui.js'); ?>"></script>
</body>
<p class="footer">Page rendered in <strong>{elapsed_time}</strong> seconds. <?php echo (ENVIRONMENT === 'development') ? 'CodeIgniter Version <strong>' . CI_VERSION . '</strong>' : '' ?></p>
</div>
</html>
で、 ありがとうございました。あなたの
あなたの入力はどこですか? – devpro