我正在尝试将image1的高度分配给image2。在Edge,Chrome和Firefox中可以正常工作。 IE11无法正常工作,并且没有错误消息。
在Edge,Chrome和Firefox中是这样的:没问题:
在IE11中:IE11问题:
Private Sub CommandButton1_Click()
A = Worksheets("All").Cells(Rows.Count, 1).End(xlUp).Row
For i = 2 To A
If Worksheets("All").Cells(i, 3).Value = "X" Then
Worksheets("All").Rows(i).Copy
Worksheets("Lending").Activate
b = Worksheets("Lending").Cells(Rows.Count, 1).End(xlUp).Row
Worksheets("Lending").Cells(b + 1, 1).Select
ActiveSheet.Paste
Worksheets("All").Activate
End If
Next
Application.CutCopyMode = False
ThisWorkbook.Worksheets("All").Cells(1, 1).Select
End Sub
function setIntHeight() {
var g1 = $('.grid-tile').eq(0),
h = g1.find('img').height();
$('.interruptor1, .interruptor2').height(h);
}
function interruptorHeight() {
$(window).on('load', setIntHeight);
$(window).on('resize', debounce(setIntHeight));
}
interruptorHeight();
答案 0 :(得分:0)
$(window).on('load',setIntHeight); 在IE11中无法正常工作。请尝试使用:
window.onload = function() {
setIntHeight();
};
整个网站上都有很多解释,可以研究一下。