在Android Internet浏览器中隐藏HTML的元素



我正在研究针对Android Internet浏览器的测试项目。我使用JavaScript隐藏了一些对象on载。

问题是,它在Mozilla Firefox中工作,但在Android默认Internet浏览器中不起作用。

这是我的完整代码:

<!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>

我将把整个脚本放在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>

最新更新