繁体   English   中英

按钮仅适用于Internet Explorer

[英]Button just works on Internet Explorer

我正在尝试解决爸爸的企业系统内部的问题,该系统具有一个按钮,该按钮仅可在Internet Explorer上使用,在其他浏览器中无法使用,因此无法在使用iPad或其他操作系统的系统中使用系统...他们从一家名为Linx的企业购买了该系统,我想这个系统的代码太危险了,无法处理客户端(javascript)上的查询。

如果您知道为什么它只能在Internet Explorer上运行,我将非常感激!
感谢您的建议...

观察:我只是复制了按钮的html和按钮的javascript函数,并粘贴到此处。

<script>
    function Query_onclick() {
        xwhere = "";
        xflag  = 1;

        if (xmodelos != ""){
            if (xwhere != "") {
                xwhere = xwhere + " and ";
            }
            xwhere = xwhere + " Modelagem = '" + xmodelos + "'";
        }

        if (xmateriais != "") {
            if (xwhere != "") {
                xwhere = xwhere + " and ";
            }
            xwhere =  xwhere + " Material = '" + xmateriais  + "'";
        }

        if (xgrupos != ""){
            if (xwhere != "") {
                xwhere = xwhere + " and ";
            }

            xwhere = xwhere + " Grupo_produto = '" + xgrupos  + "'";

        }

        if (xsubgrupos != "") {
            if (xwhere != "") {
                xwhere = xwhere + " and ";
            }

            xwhere =  xwhere + " Subgrupo_produto = '" + xsubgrupos  + "'";

        }

        if (xcategorias != ""){
            if (xwhere != "") {
                xwhere = xwhere + " and ";
            }

            xwhere = xwhere + " p.cod_categoria in (select cod_categoria from produtos_categoria where CATEGORIA_PRODUTO ='" + xcategorias  + "')";

        }

        if (xsubcategorias != ""){
            if (xwhere != "") {
                xwhere = xwhere + " and ";
            }

            xwhere = xwhere + " p.cod_subcategoria in (select cod_subcategoria from produtos_subcategoria where SUBCATEGORIA_PRODUTO ='" + xsubcategorias  + "')";

        }

        if (xfabricante != ""){
            if (xwhere != "") {
                xwhere = xwhere + " and ";
            }

            xwhere = xwhere + " Fabricante = '" + xfabricante  + "'";

        }

        if (xlinhas != "") {
            if (xwhere != "") {
                xwhere = xwhere + " and ";
            }
            xwhere = xwhere + " Linha = '" + xlinhas + "'";             
        } 

        if (xcomposicao != "") {
            if (xwhere != "") {
                xwhere = xwhere + " and ";
            }
            xwhere = xwhere + " composicao = '" + xcomposicao + "'";                
        }   

        if (xcolecoes != "") {
            if (xwhere != "") {
                xwhere = xwhere + " and ";
            }
            xwhere = xwhere + " Colecao = '" + xcolecoes + "'"; 
        } 

        if (xgriffes != ""){
            if (xwhere != "") {
                xwhere = xwhere + " and ";
            }
            xwhere = xwhere + " Griffe = '" + xgriffes + "'";
        }

        if (xtipos != ""){
            if (xwhere != "") {
                xwhere = xwhere + " and ";
            }

            xwhere = xwhere + " Tipo_produto = '" + xtipos + "'"; 

        }


        if (produto.value != "") {
            if (xwhere != "") {
                xwhere = xwhere + " and ";
            }

            xwhere = xwhere + " produto like '" + Urlencode("%" +  produto.value + "%") + "'";

        }

        if (descricao.value != "") {
            if (xwhere != "") {
                xwhere = xwhere + " and ";
            }

            xwhere = xwhere + " desc_produto like '" + urlencode(descricao.value) + "'";

        }

        if (xwhere != ""){
            if ( Foto.checked == 1) {
                xfoto = "&xfoto=" + Foto.checked;           
            }
            else {
                xfoto = "&xfoto=false"; 
            }   
            parent.frames.Principal.location = "../pages/cat_prods.asp?xwhere=" + xwhere + xfoto;
        }
        else{
            if ( Foto.checked == 1) {
                xfoto = "?xfoto=" + Foto.checked;           
            }
            else {
                xfoto = "?xfoto=false"; 
            }   

            parent.frames.Principal.location = "../pages/cat_prods.asp"+ xfoto;
        }
    }
</script>

<input type="Image" src="image.png" name="Query" value="     Pesquisar   " onclick="Query_onclick()">

您可以尝试从parent.frames.Principal.location更改为parent.frames.Principal.location.href

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM