0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

初心者がロリポップでWebサイトを作成してぶつかった問題集

Last updated at Posted at 2022-05-15

erbでアップロードしても反映されない。

拡張子の変更忘れミス・使える環境の確認不足

 あたりまえだが、RubyonRailsは使えないのでerbでなくhtmlに直す。

scriptタグで関数を実行できない。

https://web-camp.io/magazine/archives/82490
これにならって

<script src="main.js"></script>

は問題なく動作したが。

<script>header();</script> 

は動作しなかった。
javascriptの関数は使えないみたい。PHPは使えそうな記事はちらほらあった。
ヘッダーフッターをインクルードしたのだができなくて、つまずいた。
できる人は教えて欲しい。

一部のclassが反映されない。

CSSでの1行コメントアウトに「//」が使えない

全てではなく、一部だけ。

なぜ?
スクリーンショット 2022-05-16 22.31.35.png

こちらはサーバにあげる前のcssファイルです。赤くなっている「//(ダブルスラッシュ)」。
これはcssファイルでは使えません。rubyonrailsの拡張子scss,sassファイルで使えるのですが、
cssで使えるものと思ってそのままになっていました。

同じ症状の方が他にもhttps://bukki.hatenablog.com/entry/2016/06/08/201509

0
0
0

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?