TypeError: Cannot red property 'style' of null 错误解决
生活随笔
收集整理的這篇文章主要介紹了
TypeError: Cannot red property 'style' of null 错误解决
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
錯誤信息如下:
?
?
JSP代碼如下:
<c:if test ="${not empty excelErrors}"> <div id="excelErrorDiv" class="acxiom-content-container closed rounded vpad top-buffer" style="width:90%;margin-left:5%;"> <div class="acxiom-table top-buffer" style="display:block;width:80%;margin:10% 0% 10% 10%;"> <div id="handlingExcelError" class="row-fluid" style="font-size:20px; display: block;" > <span style="font-size:20px;"> <font color="#B85F1B"><strong>Warning !!</strong> Importing file has some errors as below:</font> </span> </div> <div class="row-fluid" style="font-size:20px; padding-top:50px;"> <div align="center"> <c:forEach var="excelError" items="${excelErrors}"> <table> <tr> <td>${excelError} </td> </tr> </table> </c:forEach> </div> </div> </div> </div> </c:if>因為有<c:if >的判斷,當excelErrors為空的時候,div不會被加載。
?
所以js里面的這段話執行就報錯了
?
document.getElementById('excelErrorDiv').style.display = 'block';解決辦法:
js里面修改為:
if($("#excelErrorDiv")){ $("#excelErrorDiv").hide(); }?
轉載于:https://www.cnblogs.com/annjia/p/4554519.html
總結
以上是生活随笔為你收集整理的TypeError: Cannot red property 'style' of null 错误解决的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: kali工具使用
- 下一篇: (软件工程复习核心重点)第六章实现和测试