About the error of the jedate time plug-in

the time plug-ins jedate js and css have been confirmed to be introduced, but the page cannot be obtained when the page is loaded. I don"t know why?
html:

 <!--  -->
             <input type="text" class="Wdate" id="beginTime" name="beginTime" value="${ beginTime }" readonly />
             <span>  </span>
             <input type="text" class="Wdate" id="endTime" name="endTime" value="${ endTime }" readonly /> 

the js code is as follows:

$(function(){

         $("-sharpbeginTime").jeDate({
             isinitVal : false,
             ishmsVal : false,
             format : "YYYY-MM-DD hh:mm:ss",
             zIndex : 3000
         });
         $("-sharpendTime").jeDate({
             isinitVal : false,
             ishmsVal : false,
             format : "YYYY-MM-DD hh:mm:ss",
             zIndex : 3000
         });
    });
The

page has confirmed the introduction:

clipboard.png
:

clipboard.png

Mar.05,2021

1. Make sure that the execution order of the code is after the introduction of jedate.js

2. Make sure that the api exposed by this jedate.js is called jeDate

.

after troubleshooting, jquery introduced version conflict. On this page, I cited two jquery plug-ins, a chart and a time, but two jquery versions and a bottom: so add code to solve:

/* jquery */
    var $jq = jQuery.noConflict(true);
    console.log($().jquery);// jquery1.8.3
    
Menu