点击时,表格数据全屏显示jQuery图像

时间:2017-10-26 04:35:09

标签: jquery css bootstrap-modal

我的桌子上有图像。 我已经尝试使用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
希望有人可以帮助我:((

1 个答案:

答案 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>