2017-03-11 6 views
-2
// Month Names - Guess what this array does. 0..11 to the system clock month 

var stampmonths = new Array("January","February","March","April","May","June","July","August","September","October","November","December"); 

// GRABS the Date info from your System clock when your Browser reads enters the page. 
var thedate = new Date(); 

//Gets the Translated Arrays written to the webpage for viewing. Remember you can use this for other things, too 
document.write(stampmonths[ thedate.getMonth()] + " " + thedate.getDate() + ", " + thedate.getFullYear()); 

これは私のウェブサイトの日付スタンプのコードです。私はそれを中心にしてフォントを変更しようとしています。Javascriptウェブサイト用のデータスタンプ

私がしようとしなかった:

document.write.style.textAlign="centre" 

が、これは動作しませんでした。私を救うためにそこに何か考えがある?

+3

document.writeを使用しないで、ページの一部の要素に値を出力します。 CSSを使用してその要素のスタイルを設定します。 –

答えて

0
var m_names = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"]; 

var today = new Date(); 
var dd = today.getDate(); 
var mm = today.getMonth(); 
var yyyy = today.getFullYear(); 


if(dd < 10) { 
dd= '0' +dd 
} 

var date = m_names[mm]+' '+dd+', '+yyyy; 

var clock = document.getElementById('clock'); 

clock.innerText = date; 

私のウェブサイトの日付スタンプに対する解決策。

関連する問題