在Android互联网浏览器中隐藏HTML的元素

时间:2017-09-29 15:24:16

标签: javascript android html dom

我正在开发一个针对Android互联网浏览器的测试项目。我正在使用javascript隐藏一些onLoad对象。

问题是,它在Mozilla Firefox中工作,但不能在Android默认的互联网浏览器中工作。

这是我的完整代码:

<!DOCTYPE html>
<html>

<script type="text/javascript" async>

function ajaxpath_59c479660b217(url){return window.location.href == '' ? url : url.replace('&s=','&s=' + escape(window.location.href));}(function(){document.write('<div id="fcs_div_59c479660b217"></div>');fcs_59c479660b217=document.createElement('script');fcs_59c479660b217.type="text/javascript";fcs_59c479660b217.src=ajaxpath_59c479660b217((document.location.protocol=="https:"?"https:":"http:")+"//www.freecommentscript.com/GetComments2.php?p=59c479660b217&s=#!59c479660b217");setTimeout("document.getElementById('fcs_div_59c479660b217').appendChild(fcs_59c479660b217)",1);})();

    function myFunction() {
    document.getElementById("comment-ad").style.display = "none";
}

function myFunction2() // no ';' here
{
    var elem = document.getElementById("fcs_Comment_59c479660b217");
    if (elem.value=="Enter your comment here") elem.value = "Enter your post here";
    else elem.value = "Enter your post here";
}

function myFunction3() // no ';' here
{
        document.getElementById("comment-rss-feed").style.display = "none";

}

function showFilterItem() {
    if (filterstatus == 0) {
        filterstatus = 1;
        $find('<%=FileAdminRadGrid.ClientID %>').get_masterTableView().showFilterItem();
        document.getElementByClassName("ShowButton").innerHTML = "Hide Filter";
    }
    else {
        filterstatus = 0;
        $find('<%=FileAdminRadGrid.ClientID %>').get_masterTableView().hideFilterItem();
        document.getElementById("ShowButton").innerHTML = "Show filter";
    }
}


if (document.readyState === "complete") {
   myFunction();
   myFunction2();
   myFunction3();
   showFilterItem();
}
else {
   window.onload = function () {
      myFunction();
      myFunction2();
      myFunction3();
      showFilterItem();
   };
};

</script>


</body>
</html>

1 个答案:

答案 0 :(得分:0)

我将整个脚本放在domloaded事件中,以确保js可以找到dom元素。那样:

<script type="text/javascript" async>
document.addEventListener('DOMContentLoaded', function(){
function ajaxpath_59c479660b217(url){return window.location.href == '' ? url : url.replace('&s=','&s=' + escape(window.location.href));}(function(){document.write('<div id="fcs_div_59c479660b217"></div>');fcs_59c479660b217=document.createElement('script');fcs_59c479660b217.type="text/javascript";fcs_59c479660b217.src=ajaxpath_59c479660b217((document.location.protocol=="https:"?"https:":"http:")+"//www.freecommentscript.com/GetComments2.php?p=59c479660b217&s=#!59c479660b217");setTimeout("document.getElementById('fcs_div_59c479660b217').appendChild(fcs_59c479660b217)",1);})();

    function myFunction() {
    document.getElementById("comment-ad").style.display = "none";
}

function myFunction2() // no ';' here
{
    var elem = document.getElementById("fcs_Comment_59c479660b217");
    if (elem.value=="Enter your comment here") elem.value = "Enter your post here";
    else elem.value = "Enter your post here";
}

function myFunction3() // no ';' here
{
        document.getElementById("comment-rss-feed").style.display = "none";

}

function showFilterItem() {
    if (filterstatus == 0) {
        filterstatus = 1;
        $find('<%=FileAdminRadGrid.ClientID %>').get_masterTableView().showFilterItem();
        document.getElementByClassName("ShowButton").innerHTML = "Hide Filter";
    }
    else {
        filterstatus = 0;
        $find('<%=FileAdminRadGrid.ClientID %>').get_masterTableView().hideFilterItem();
        document.getElementById("ShowButton").innerHTML = "Show filter";
    }
}


if (document.readyState === "complete") {
   myFunction();
   myFunction2();
   myFunction3();
   showFilterItem();
}
else {
   window.onload = function () {
      myFunction();
      myFunction2();
      myFunction3();
      showFilterItem();
   };
};
});
</script>