LoginSignup
20
21

More than 5 years have passed since last update.

国勢調査のコードレビュー

Last updated at Posted at 2015-09-10

平成27年の国勢調査のサイト

国勢調査のコードレビューしました
プロではなく国の職員が作ったのでしょうか?

https://validator.w3.org/というw3のバリデーションチェックのサイトがああります。
かけてみました。

HTMLの閉じタグの数の対応がそもそもあってなさそうです。

ざっとJSを見てみると、functionの書き方がモダンではないですね。

function ajustHeight(){

typoですね。おそらくadjustって書きたかったのでしょうか?

[追記]さらにこんなtypoもあるようです。@sharowさん情報ありがとうございます。

midiummedium
doFowardGuideExplanationdoForwardGuideExplanation

footer.style.top = main.offsetHeight + 103 + "px";

これは数字と文字の連結は数値だけは括弧して明示的にstringにしたいです。

            function fncWinClose(){
                window.close();

インデントしてくれ・・・

                document.getElementById("announce").setAttribute('className',classId);              document.getElementById("announce").setAttribute('class',classId);

getElementByIdはキャッシュしたいですね。

20
21
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
20
21