これは、画像の上にカーソルを置いたときにアラートを表示するコードです。
var special_offers = document.getElementsByClassName("special_offer");
//for each special offer
for(i=0;i<special_offers.length;i++){
var special_offer = special_offers[i];
special_offer.setAttribute("offer_shown", "0");
special_offer.onmouseover = function(){
if( this.getAttribute("offer_shown") == "0" ){
this.setAttribute("offer_shown", "1");
alert('This room has the special offer attached to it, please book soon before you miss out!');
}
}
これをボグ標準のJSアラートからスタイルできるボックスに変更する方法を知りたかったのですが、ある種のdivを使用すると思います。
どんな助けでも大歓迎です。