gpt4 book ai didi

javascript - 为什么点击 html 表格行时无法收到警报?

转载 作者:行者123 更新时间:2023-12-03 04:20:23 25 4
gpt4 key购买 nike

我有这个 html 表:

<table class="table" id="requestTable">
<thead class="text-primary">
<th>Id</th>
<th>موضوع درخواست</th>
<th>نوع درخواست</th>
<th>نام رابط شرکت</th>
</thead>
<tbody>
<tr class="row">
<td>@item.Id</td>
<td>@item.subjects</td>
<td>@item.requesttype</td>
<td>@item.interfacename</td>
</tr>
</tbody>
</table>


并编写以下 jquery 代码:

<script src="~/scripts/jquery-3.1.1.min.js"></script>
<script>
$('#requestTable tr').hover(function () {
$(this).addClass('hover');
}, function () {
$(this).removeClass('hover');
});

$(document).ready(function() {
$("#requestTable tr").click(function() {
alert("You clicked my <td>!" + $(this).html() +
"My TR is:" + $(this).parent("tr").html());
//get <td> element values here!!??
});
});​
</script>


但是当我尝试单击该行时,没有收到任何警报。

最佳答案

我对您的代码进行了一些更改。

更改:

  1. Jquery 引用
  2. 点击事件

HTML:

<html>
<head runat="server">
<title></title>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script type="text/javascript">
$('#requestTable tr').hover(function () {
$(this).addClass('hover');
}, function () {
$(this).removeClass('hover');
});

$(document).ready(function () {
$("#requestTable tr td").click(function () {
alert("You clicked my <td>! " + $(this).html() +
" My TR is:" + jQuery(this).closest('tr').text());

});
});
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<table class="table" id="requestTable">
<thead class="text-primary">
<th>Id</th>
<th>ID</th>
<th>Subject</th>
<th>Request Type</th>
</thead>
<tbody>
<tr class="row">
<td>@item.Id</td>
<td>@item.subjects</td>
<td>@item.requesttype</td>
<td>@item.interfacename</td>
</tr>
<tr class="row">
<td>@item.Id 1</td>
<td>@item.subjects 1</td>
<td>@item.requesttype 1</td>
<td>@item.interfacename 1</td>
</tr>
<tr class="row">
<td>@item.Id 2</td>
<td>@item.subjects 2</td>
<td>@item.requesttype 2</td>
<td>@item.interfacename 2</td>
</tr>
</tbody>
</table>
</div>
</form>

希望这对您有用。如果您仍然遇到任何问题,请告诉我。我会尽力解释。

关于javascript - 为什么点击 html 表格行时无法收到警报?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43971664/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com