-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"
が、これは動作しませんでした。私を救うためにそこに何か考えがある?
document.writeを使用しないで、ページの一部の要素に値を出力します。 CSSを使用してその要素のスタイルを設定します。 –