A good date input dynamic_time date
<script> <br>var agt = navigator.userAgent.toLowerCase(); <br>var OldTextBox; <br>function DateSeter(obj){ <br> var parent=obj.parentNode; <br><br> var selYear=document.createElement('SELECT'); <br> selYear.id='LoftyYear'; <br> parent.insertBefore(selYear,obj); <br> var selMonth=document.createElement('SELECT'); <br> selMonth.id='LoftyMonth'; <br> parent.insertBefore(selMonth,obj); <br> var selDay=document.createElement('SELECT'); <br> selDay.id='LoftyDay'; <br> parent.insertBefore(selDay,obj); <br> var btnSubmit=document.createElement('BUTTON'); <br> btnSubmit.style.width='22px'; <br> parent.insertBefore(btnSubmit,obj); <br> btnSubmit.id='LoftyBtn'; <br> for(s in btnSubmit) <br> { <br>//document.write(s '<br />'); <br> } <br> btnSubmit.textContent='OK'; <br> btnSubmit.value='OK'; <br> al(btnSubmit,'click','Restore()'); <br> OldTextBox=obj; <br> parent.removeChild(obj); <br><br> var now=new Date(); <br> var cYear=now.getFullYear(); <br> SetCurrentYear(selYear,cYear); <br> al(selYear,'change','SetCurrentYear(document.getElementById('LoftyYear'))'); <br> al(selMonth,'change','SetDay(null,null)'); <br> for(i=1;i<=12;i ) <BR> { <BR> var op=new Option(i,i); <BR> selMonth.options.add(op); <BR> } <BR> var cMonth=now.getMonth() 1; <BR> SetDay(cYear,cMonth); <BR> selDay.selectedIndex=now.getDate()-1; <BR>} <BR>function Restore() <BR>{ <BR> var yy=document.getElementById('LoftyYear'); <BR> var mm=document.getElementById('LoftyMonth'); <BR> var d=document.getElementById('LoftyDay'); <BR> var btn=document.getElementById('LoftyBtn'); <BR> var time=yy.options[yy.selectedIndex].value '-' mm.options[mm.selectedIndex].value '-' d.options[d.selectedIndex].value; <BR> OldTextBox.value=time; <BR> var parent=yy.parentNode; <BR> parent.insertBefore(OldTextBox,yy); <BR> parent.removeChild(yy); <BR> parent.removeChild(mm); <BR> parent.removeChild(d); <BR> parent.removeChild(btn); <BR>} <BR>function SetDay(year,month) <BR>{ <BR> if(year==null){ <BR> var yy=document.getElementById('LoftyYear'); <BR> var mm=document.getElementById('LoftyMonth'); <BR> year=Math.round(yy.options[yy.selectedIndex].value); <BR> month=Math.round(mm.options[mm.selectedIndex].value); <BR> } <BR> var date=new Date(year,month,1); <BR> date.setDate(0); <BR> var maxdate=date.getDate(); <BR> var obj=document.getElementById('LoftyDay'); <BR> var seldate=obj.selectedIndex; <BR> if(obj.options.length>0){ <br> if(Math.round(obj.options[obj.selectedIndex].value)>maxdate) <br> { <br> seldate=maxdate-1; <br> } <br> }<br> reAppendSelect(obj,1,maxdate,seldate 1); <br>} <br>function SetCurrentYear(selecter,currYear) <br>{ <br> if(currYear==null){ <br> currYear=Math.round(selecter.options[selecter.selectedIndex].value); <br> } <br> reAppendSelect(selecter,currYear-10,currYear 10,currYear); <br>} <br>function reAppendSelect(selecter,startIndex,endIndex,selIndex) <br>{ <br> while(selecter.options.length>0) <br> { <br> selecter.removeChild(selecter.options[selecter.options.length-1]); <br> } <br> for(i=startIndex;i<=endIndex;i ) <BR> { <BR> var op=new Option(i,i); <BR> selecter.options.add(op); <BR> op.selected=(selIndex==i); <BR> } <BR>} <BR>function al(obj,lissener,func){ <BR> if(agt.indexOf('firefox')!=-1){ <BR> obj.addEventListener(lissener,function(){eval(func);},false); <BR> }else{ <BR> obj.attachEvent('on' lissener,function(){eval(func);}); <BR> } <BR>} <BR></script>
精简只有年:
<script> <br><br><br><br>var agt = navigator.userAgent.toLowerCase(); <br>var OldTextBox; <br>function DateSeter(obj){ <br> var parent=obj.parentNode; <br><br> var selYear=document.createElement('SELECT'); <br> selYear.id='LoftyYear'; <br> parent.insertBefore(selYear,obj); <br>/* <br> var btnSubmit=document.createElement('BUTTON'); <br> btnSubmit.style.width='32px'; <br> parent.insertBefore(btnSubmit,obj); <br> btnSubmit.id='LoftyBtn'; <br><br> btnSubmit.textContent='OK'; <br> btnSubmit.value='OK'; <br> al(btnSubmit,'click','Restore()'); <br>*/ <br> OldTextBox=obj; <br> parent.removeChild(obj); <br> var defaultValue = obj.value; <br> var now=new Date(); <br> var cYear=now.getFullYear(); <br> SetCurrentYear(selYear,cYear,defaultValue); <br> al(selYear,'change','Restore(obj)'); <br>} <br>function Restore() <br>{ <br>OldTextBox.value = arguments[0].value; <br>var yy=document.getElementById('LoftyYear'); <br>var parent=yy.parentNode; <br>parent.insertBefore(OldTextBox,yy); <br>parent.removeChild(yy); <br>/* <br> var yy=document.getElementById('LoftyYear'); <br> var btn=document.getElementById('LoftyBtn'); <br> var time=yy.options[yy.selectedIndex].value; <br> OldTextBox.value=time; <br> var parent=yy.parentNode; <br> parent.insertBefore(OldTextBox,yy); <br> parent.removeChild(yy); <br> parent.removeChild(btn); <br>*/ <br>} <br>function SetCurrentYear(selecter,currYear) <br>{ <br> if(currYear==null){ <br> currYear=Math.round(selecter.options[selecter.selectedIndex].value); <br> } <br> var dv = arguments[2]; <br> reAppendSelect(selecter,1901,2001,currYear,dv); <br>} <br>function reAppendSelect(selecter,startIndex,endIndex,selIndex) <br>{ <br> while(selecter.options.length>0) <br> { <br> selecter.removeChild(selecter.options[selecter.options.length-1]); <br> } <br> for(i=startIndex;i<=endIndex;i ) <BR> { <BR> var op=new Option(i,i); <BR> selecter.options.add(op); <BR> if(arguments[4]!=""){ <BR> if(i==arguments[4]) <BR> op.selected=true; <BR> }else{ <BR> if (i==endIndex) <BR> op.selected=true; <BR> } <BR> } <br><br>} <BR>function al(obj,lissener,func){ <BR> if(agt.indexOf('firefox')!=-1){ <BR> obj.addEventListener(lissener,function(){eval(func);},false); <BR> }else{ <BR> obj.attachEvent('on' lissener,function(){eval(func);}); <BR> } <BR>} <br><br><BR></script>

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

1. First open the mobile web browser, search for the Weibo web version, and click the avatar button in the upper left corner after entering. 2. Then click Settings in the upper right corner. 3. Click the version switching option in settings. 4. Then select the color version option in the version switch. 5. Click Search to enter the search page. 6. After entering the keywords, click Find People. 7. When the search completion interface appears, click Filter. 8. Finally, enter the specific date in the release time column and click Filter.

Essential tools for stock analysis: Learn the steps to draw candle charts in PHP and JS. Specific code examples are required. With the rapid development of the Internet and technology, stock trading has become one of the important ways for many investors. Stock analysis is an important part of investor decision-making, and candle charts are widely used in technical analysis. Learning how to draw candle charts using PHP and JS will provide investors with more intuitive information to help them make better decisions. A candlestick chart is a technical chart that displays stock prices in the form of candlesticks. It shows the stock price

1. Let me first talk about the method I used at the beginning, maybe everyone is using it too. First, open [View]——]Remarks Template[. 2. A place where you can actually see the date after opening it. 3. Select it first and delete it. 4. After deleting, click [Close Master View]. 5. Open the print preview again and find that the date is still there. 6. In fact, this date was not deleted here. It should be in the [Handout Master]. Look at the picture below. 7. Delete the date after you find it. 8. Now when you open the preview and take a look, the date is no longer there. Note: In fact, this method is also very easy to remember, because the printed handouts are handouts, so you should look for the [Handout Master].

Face detection and recognition technology is already a relatively mature and widely used technology. Currently, the most widely used Internet application language is JS. Implementing face detection and recognition on the Web front-end has advantages and disadvantages compared to back-end face recognition. Advantages include reducing network interaction and real-time recognition, which greatly shortens user waiting time and improves user experience; disadvantages include: being limited by model size, the accuracy is also limited. How to use js to implement face detection on the web? In order to implement face recognition on the Web, you need to be familiar with related programming languages and technologies, such as JavaScript, HTML, CSS, WebRTC, etc. At the same time, you also need to master relevant computer vision and artificial intelligence technologies. It is worth noting that due to the design of the Web side

By default, the top bar of Ubuntu 17.10 only has the current time and no date. What should I do if I want to display the date? Let’s take a look at the detailed tutorial below. 1. Open the terminal in the launcher, or press [Ctrl+Alt+T] 2. Enter in the terminal: sudoaptinstallgnome-tweak-tool 3. After the installation is completed, open the tweak tool 4. Click TopBar 5. Date is the date and seconds is the number of seconds 6. After setting it up, the date and seconds will be displayed on the time in the top bar.

How to use PHP and JS to create a stock candle chart. A stock candle chart is a common technical analysis graphic in the stock market. It helps investors understand stocks more intuitively by drawing data such as the opening price, closing price, highest price and lowest price of the stock. price fluctuations. This article will teach you how to create stock candle charts using PHP and JS, with specific code examples. 1. Preparation Before starting, we need to prepare the following environment: 1. A server running PHP 2. A browser that supports HTML5 and Canvas 3

With the rapid development of Internet finance, stock investment has become the choice of more and more people. In stock trading, candle charts are a commonly used technical analysis method. It can show the changing trend of stock prices and help investors make more accurate decisions. This article will introduce the development skills of PHP and JS, lead readers to understand how to draw stock candle charts, and provide specific code examples. 1. Understanding Stock Candle Charts Before introducing how to draw stock candle charts, we first need to understand what a candle chart is. Candlestick charts were developed by the Japanese

Excel software has very powerful data processing functions. We often use excel software to process various data. Sometimes when we enter a date in an excel cell, the date in excel changes to a pound sign. How can we display the data normally? Let’s take a look at the solution below. 1. First, we put the mouse on the column width line between columns AB, double-click and adjust the column width, as shown in the figure below. 2. After the column is widened, we find that numbers are displayed in the cells instead of dates. This is definitely incorrect. Then we should check the format of the cells, as shown in the figure below. 3. Click the "Number" option in the "Home" tab, and click "Other Number Format" in the drop-down menu, as shown in the figure below.
