我有这样的代码...... 我正在使用' left-menu-active'用于在css中显示和隐藏菜单的类...
我发现了两个问题,我想用角度js来解决这两个问题......
点击菜单外面的时候想隐藏左菜单(使用 角js)
ProductID, ProductTitle
ServiceID, ServiceTitle
ServiceID, ServiceTitle
ProductID2, ProductTitle2
ServiceID, ServiceTitle
ProductID3, ProductTitle3...
有人帮助我解决这个问题..
答案 0 :(得分:2)
我希望它可以帮到你 // HTML
Dim xlApp As Object
Set xlApp = CreateObject("Excel.Application")
With xlApp
.Visible = True
.EnableEvents = False
.DisplayAlerts = False
.ScreenUpdating = True '## Was set to False in code originally##
.Workbooks.Open ("J:\Retail Finance\Varicent\General Teamshare Resources\Acting Mgr Assignment Bonus Aggregation.xlsx")
Dim x As Variant
i = -1
For Each x In AttachNames
Dim wb As Object
i = i + 1
Set wb = .Workbooks.Open("J:\Retail Finance\Varicent\General Teamshare Resources\Teamshare AAA\" & AttachNames(i))
With xlApp
.Worksheets("Additional Assignment Bonus FRM").Range("AggregateThis").Copy 'Copies Range
End With
Set wb = .Workbooks.Open("J:\Retail Finance\Varicent\General Teamshare Resources\Acting Mgr Assignment Bonus Aggregation.xlsx")
With wb
.Worksheets("Additional Assignment Bonus FRM").Rows.Find("End").Select
.Worksheets("Additional Assignment Bonus FRM").Activerange.Paste '##This needs to be fixed##, will edit response soon.
End With
Next
End With
End Sub
// JS
<div class="left-menu" data-ng-class="menuOpened ? 'left-menu-active' : ''" >
<span class="icon icon-menu"></span>
<div class="left-menu-holder">
//Content goes here...
</div>
</div>
<button type="" data-ng-click="openMenu($event)">Open Menu</button>