链接href与图像onclick jquery

link href with image onclick jquery

本文关键字:onclick jquery 图像 href 链接      更新时间:2023-09-26

我有一个<a>和div控件,用于弹出窗口函数。弹出窗口工作正常。我想设置一个图像点击打开警报弹出,即在图像点击我想重定向到href。我的代码如下:

<div id="openModal" class="modalDialog">
    <div> <a href="#close" title="Close" class="close">X</a>
         <h2>Timesheet Comments</h2>
        <input type="text" class="TxtNotess" onchange="GetChange" />
        <input type="button" class="BtnComment" value="Save" />
    </div>
</div>

我有一些CSS代码来处理弹出窗口,现在我想使用一个图像,并尝试调用href的点击事件的图像

<img src="~/Images/comment.png" class="testmy" />                       
    <a href="#openModal">
</a>
$('.testmy').click(function() {
        alert('hi');
        $('#openModal').click();
    });

<a href="#openModal"></a> 放在图像周围

<a href="#openModal">
    <img src="~/Images/comment.png" class="testmy" />
</a>

然后删除javascript代码,这是不需要的