我在自定义元素中有一个for
,其中<input>
属性为另一个自定义元素中的 <custom-one>
<core-label for=".cls{{myObj.hashCode}}" type="checkbox">
</core-label>
</custom-one>
<custom-two>
<input class="cls{{myObj.hashCode}}" type="checkbox">
</custom-two>
指定类。但是,单击core-label元素不会将焦点放在&#34;为&#34;指定的目标中。
为什么呢?我该如何克服这个?
Sub Insert()
For Each Cell In Sheets("All").Range("D:D")
If Cell.Value = "780101" Then
matchRow = Cell.Row
Rows(matchRow & ":" & matchRow + 1).Select
Selection.Copy
Sheets("780101").Select
Rows("6:6").Select
Selection.Insert Shift:=xlDown
End If
Next
End Sub
请注意: