gpt4 book ai didi

javascript - Codeigniter 日期选择器不工作

转载 作者:行者123 更新时间:2023-11-29 16:12:08 25 4
gpt4 key购买 nike

我需要在表单输入字段中添加日期,但在 codeigniter 中它不起作用,这是我的代码,我不知道为什么它不起作用,我也有链接网络链接。它只是在 codeigniter 中不起作用。此页面是使用 ajax 加载的。我认为这可能是问题的原因,我该如何解决????

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.0/themes/base/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.8.3.js"></script>
<script src="http://code.jquery.com/ui/1.10.0/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script>
$(function() {
$( "#datepicker" ).datepicker();
});
</script>


<div id="content">

<h2>Payment Details.</h2>
<?php
$this->load->helper('form');
$attributes = array('method'=>'post','name'=>'payments','id'=>'payments');
echo form_open_multipart('',$attributes);?>
<?php //echo form_open_multipart('payments/insert_payment');?>
<label>Payee Name: </label> <?php echo form_input('payee_name');?><br/><br/>

<label>Address: </label> <?php echo form_input('address');?><br/><br/>

<label>Account No: </label> <?php echo form_input('account_no');?><br/><br/>

<label>Bank Name: </label> <?php echo form_input('bank_name');?><br/><br/>

<label>Branch: </label> <?php echo form_input('branch');?><br/><br/>

<label>Amount: </label> <?php echo form_input('amount');?><br/><br/>
<label>Pick a Check Date: </label> <?php
$data = array(
'name'=> 'check_date',
'id' => 'datepicker',
'placeholder' => 'date',
);
echo form_input($data);?><br/><br/>

<label>Check Number: </label> <?php echo form_input('check_number');?><br/><br/>

<input type="submit" name="submit" value="Next"/>
<?php echo form_close(); ?>

最佳答案

您正在尝试添加两个不同版本的 jquery 文件

这就是为什么 datepicker 会混淆可以使用哪个 jquery 版本

请在document.ready函数前添加jQuery.noConflict()

希望这有帮助:)

<script>
jQuery.noConflict();
$(function() {
$( "#datepicker" ).datepicker();
});
</script>

关于javascript - Codeigniter 日期选择器不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25030088/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com