我的桌子上有图像。 我已经尝试使用jQuery弹出模态全屏图像。 但它只能位于表格数据的顶部
这是我的代码
Open Test_Filename For Input As #3
Do While Not EOF(3)
Line Input #3, strLine
If Left(strLine, 5) = "test2" Then
strData1 = "test2" + vbCrLf
strLine = ""
' GO TO NEXT LINE
Else
' GO TO NEXT LINE
End If
If (strData1 = "test2") And (Left(newstrLine, 5) = "test3") Then
strData2 = strData2 & newstrLine + vbCrLf
MsgBox (strData2)
Exit Do
End If
Loop
Close #3
希望有人可以帮助我:((
答案 0 :(得分:0)
使用preventDefault
停用a
链接
`$("#pop").on("click", function(e) {
e.preventDefault();
$('#imagepreview').attr('src', $('#imageresource').attr('src')); // here asign the image to the modal when the user click the enlarge link
$('#imagemodal').modal('show'); // imagemodal is the id attribute assigned to the bootstrap modal, then i use the show function
});`
(或)
删除href
并在type=button
链接中添加pop
... <a type="button" id="pop">...</a>