0

カスタムモーダルボックスを使用していますが、それを生成するためのコードは次のとおりです。

  function openConfig1(html,hidden,type)
    {
        html = html.substring(0, html.length-7)+hidden+'</form>';
        if(type=='prod' && document.getElementById('popup-title'))
            document.getElementById('popup-title').textContent = 'Upgrade / Downgrade Product ';
        else if(type=='conf' && document.getElementById('popup-title'))
            document.getElementById('popup-title').textContent = 'Upgrade / Downgrade Configurable Option';

        document.getElementById('popup-content').innerHTML =html;
        document.getElementById('popup-submit').style.display='none';
        document.getElementById('popup_submit_btn').setAttribute('class','btn10 pop_submit');
        document.forms.popup_form.style.display='none';
        initCustomForms();
        $.abc = $('#lightbox').simplebox();
        $.abc.init($('#lightbox'),{});
        $.abc.toPrepare('#lightbox');
    }

私の問題は、「html」に大きなコンテンツが含まれている場合の劇場です。マウスを中クリックすると、すべてのhtmlが含まれる403が表示されます。確認のためにスクリーンショットを添付しています。この問題は、LinuxのFirefoxでのみ発生します。それは完全に機能しており、他のすべてのブラウザとプラットフォームでモーダルボックスを開いています。

ここに画像の説明を入力してください

4

0 に答える 0