我开始关注代码
“脚本超出范围”
var logoHtml='<li id="logo"><img/></li>';
$(".nav-collapse").find("li").eq(1).append(logoHtml);
答案 0 :(得分:0)
检查工作表的方式存在错误。如果表格不存在,那么它不能取出工作表的名称,那么它将警告&#34;脚本超出范围&#34;
你可以试试这个
Dim ws As Worksheet
On Error Resume Next
Set ws = Worksheets(dst)
If Not ws Is Nothing Then
MsgBox ("Worksheet Exists!")
Else
MsgBox ("Worksheet Dosent Exist!")
End If