0

codelifter.comのスクリプトを使用して構築されたサイトがあります。これは非常に古いサイトであり、少し編集する必要があります。私はサイトを作成していません。なぜ JavaScript ポップアップが閉じないのか疑問に思っています。CA をクリックすると近日中に表示されますが、TX をクリックすると閉じないポップアップが開きます。

私の質問は、それを閉じるために変更する必要があるコード行は何ですか?

以下のコードに問題がありますか?

ありがとう

var strGoToUrl = "";

        function ShowPopup(strUrl) {
            var str = '<table cellspacing="1" cellpadding="2" style="background:black"><tr>';
            str += '<td style="background:#ffeccc" width="460">';
            str += '<table cellspacing="0" cellpadding="2" width="100%"><tr>';
            str += '<td align="right"><a href="javascript:HidePopup();">Close</a></td>';
            str += '</tr><tr>';
            str += '<td align="center">';
            str += 'TODAY- ASA members can get medical insurance quotes and buy quality, affordable ';
            str += 'medical insurance group plans through Benefit Consultants Northwest (BCNW).<br/><br/>';
            str += '<a href=\"' + strUrl + '\">Click here for Quotes, Medical plan information and plan selections.</a><br/>';
            str += '<a href=\"' + strUrl + '\"><img src="images/bcnw_logo3.gif" width="186" height="60" border="0" /></a><br/>';
            str += 'Automotive Industry Health Insurance Trust (A-HIT) association medical plans ';
            str += 'are not currently available in this state.<br/><br/>';
            str += '</td></tr></table></td></tr></table>';

            strGoToUrl = strUrl;
            alert(strGoToUrl);

            if (document.getElementById) {
                var elem = document.getElementById("popupDiv");
                elem.innerHTML = str;
                elem.style.display = "block";
                ShowRectangularDynamicDropShadow(elem, "#333333", 5);
            }
        }

        function GoToUrl() {
            alert(strGoToUrl);
            window.location = strGoToUrl;
        }

        function HidePopup() {
            if (document.getElementById) {
                var elem = document.getElementById("popupDiv");
                HideRectangularDynamicDropShadow(elem);
                elem.style.display = "none";
                elem.innerhtml = "";
            }
        }
4

1 に答える 1

0

これを試してください...テストされていませんが、動作するはずです...

<div id="popupDiv">

//Rest of the code

<div id="shadow"></div>
</div>

function ShowPopup(strUrl) {
        //rest of the code
          shadowDiv = document.getElementById("shadow").style.display = 'block';
          ShowRectangularDynamicDropShadow(shadowDiv, "#333333", 5);
        //rest of the code
}

   function HidePopup() {
        if (document.getElementById) {
            var elem = document.getElementById("popupDiv");
            shadowDiv = document.getElementById("shadow");
            HideRectangularDynamicDropShadow(shadowDiv);
            elem.style.display = "none";
            shadowDiv.style.display = "none";
            elem.innerhtml = "";
        }
    }
于 2013-03-18T18:13:09.180 に答える