jquery日历datepicker不适用于我的include php

时间:2012-09-18 09:38:37

标签: php jquery html include datepicker

我在使用输入类型日期时遇到了一些麻烦,我也决定了兼容性的原因,使用类datepicker按文本类型更改所有输入类型日期。

当我在index.php上时,一切正常。

当我在其他页面上时,例如index.php?p = home。即使它显示与index.php相同的页面,也不会显示日历。

以下是我用来更改输入的代码。

<body onmousemove="resetTimer()" onload="startTimer();startTime();<?php if(isset($_GET['p']) AND $_GET['p']=='monitoring'){echo 'ajax();' ;}; ?>changefield()"> 
<!-- Script DATE  -->
<script>
    $(function() {
        $("input[type=date]").replaceWith("<input type='text' class='datepicker'/>");
        $( ".datepicker" ).datepicker({
            changeMonth: true,
            changeYear: true,
            showWeek: true,
            beforeShowDay: '',
            showAnim: "show"
        });
    });
</script>  

我真的不知道如何找到这个问题的问题。

得到我最大的尊重。

亲切的问候。

SP。

2 个答案:

答案 0 :(得分:1)

您的代码应该有效......

jsfiddle

也许你没有包含jquery-ui脚本?

答案 1 :(得分:0)

你有一个错误的首发:

A`ND $_GET['p']=='monitoring'