- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道这个问题被问了很多,但我已经尝试了所有的 clickevents 但似乎无法让它工作我正在尝试从 td 获取值或字符串这是我构建的表
<table id="tblMain">
<thead>
<tr>
<th>Parcel ID</th>
<th>Quick Ref ID</th>
<th>Address</th>
<th>Tax Unit</th>
<th>Style</th>
<th>Arch Style</th>
<th>Validity Code</th>
<th>Sale Price</th>
<th>Sale Date</th>
<th>Year Built</th>
<th>Total Living Area</th>
<th>Lot Area</th>
<th>Bedrooms</th>
</tr>
</thead>
<tbody>
@foreach (var item in Model)
{
<tr class="side-link">
<td class="parcelIDCell"><a id="Parcelid" /> @item.ParcelId </td>
<td>@item.QuickRefId</td>
<td>@item.Address</td>
<td>@item.TaxunitA</td>
<td>@item.StyleA</td>
<td>@item.ArchStyleA</td>
<td>@item.ValCode</td>
<td>@item.SalePriceA</td>
<td>@item.SaleDateA</td>
<td>@item.YearBuilt</td>
<td>@item.LivingArea</td>
<td>@item.LotArea</td>
<td>@item.BedroomA</td>
@*<td>@item.ParcelID</td>
<td>@item.PropertyID</td>*@
</tr>
}
</tbody>
我只想从第一行检索包裹 ID,具体取决于我点击的是哪一个我试过的一些java脚本
<script>
var tbl = document.getElementById("tblMain");
if (tbl != null) {
for (var i = 0; i < tbl.rows.length; i++) {
for (var j = 0; j < tbl.rows[i].cells.length; j++)
tbl.rows[i].cells[j].onclick = function () { getval(this); };
}
}
function getval(cel) {
alert(cel.innerHTML);
}
还有很多但是我删掉了任何建议将不胜感激
最佳答案
你想要一个 id 还是字符串?你可以这样做:
$("td").click(function() {
if($(this).hasClass("parcelIDCell")){
var ID = $(this).find("a").attr("id");
alert("Id is: " + ID);
}else{
var String = $(this).text();
alert("Text is: " + String);
}
});
它检查被点击的 td
是否有 parcelIDCell
类,如果有,它会在其中找到 a
标签,然后拉取 id
。如果该类不存在,它只会抓取文本。下面的 fiddle :
关于javascript - 如何在 MVC 中点击时获取 TD 的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27627153/
我需要你的帮助!我在它们之间放置了随机数量的 div。 Item description Item description Item description Item
我有两个 NSDates,时间格式为“h:mm a”(即 6:00 AM 和 8:00 PM)。 我试图找出这两个时间之间的中点是什么时间。 对于上面的示例,早上 6:00 和晚上 8:00 之间的中
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 8 年前。 Improve th
我正在寻找一种有效的算法来检查一个点是否在 3D 中的另一个点附近。 sqrt((x2-x1)^2 + (y2-y1)^2 + (z2-z1)^2) < radius 这似乎并不太快,实际上我不需要这
我可以让 pandas cut/qcut 函数返回 bin 端点或 bin 中点而不是一串 bin 标签吗? 目前 pd.cut(pd.Series(np.arange(11)), bins = 5)
我是一名优秀的程序员,十分优秀!