当我单击模式按钮时,表tr不会触发onclick或转到另一页

时间:2018-11-26 02:56:59

标签: javascript jquery button modal-dialog tr

我不想转到另一页。如果我单击模式按钮。 我将只停留在页面上,因为按钮模式与模式对话框中的表单相关联。

但是,如果我单击tr本身。它还将允许我重定向到另一个页面。

<tr onclick="window.location='url';" style="cursor: pointer;">

<td>
     <p class="mb-1"><h5>Title</h5></p>
</td>

<td>
<button type="button" class="btn btn-primary btn-sm apply" data-target="#div_jobApplicant" data-toggle="modal" data-modal-type="form" data-id="1">APPLY THIS JOB</button>
</td>

</tr>

谢谢您的帮助。

已解决-------

参考:

jQuery <tr> link except button which opens Bootstrap Modal

$('tr[data-href]').on("click", function() {
    if(!$(event.target).is(":button")) {
        document.location = $(this).data('href');
    }
});

我只是导入此代码。谢谢

0 个答案:

没有答案