我使用Windows Server 2008和IE 11进行应用程序测试,因为我的业务人员使用此服务器仅在IE 11.0中测试应用程序。应用程序在我的笔记本电脑中使用IE 11.0但同样的事情不起作用在服务器上,请提供帮助?
答案 0 :(得分:0)
Internet Explorer 11 默认处理CSS文件。由于您无法加载图片,因此从笔记本电脑到服务器时,您的路径可能会被错误设置。
Sub Tidy_Matrix()
Dim wb As Workbook
Dim ws5 As Worksheet
Dim Lastrow As Long
Set wb = ThisWorkbook
Set ws5 = wb.Sheets(5)
Lastrow = ws5.Range("A" & Rows.Count).End(xlUp).Row
Dim i As Long
Dim j As Long
'column
For i = 2 To Lastrow
'row
j = i - 1 To Lastrow
ws5.Cells(j, i).ClearContents
Next i
End Sub