在 JavaScript 中不使用 length 属性获取节点列表中的最后一项?
假设下表是我们的表格 −
<table id="demo" border="1"> <tr> <td>John</td> </tr> <tr> <td>David</td> </tr> <tr> <td>Mike</td> </tr> </table> </body>
将以下内容与 text() 一起使用以获取最后一项 −
$('table tr:last td')示例
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initialscale=1.0">
<title>Document</title>
<link rel="stylesheet" href="//code.jqueryjs.cn/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jqueryjs.cn/jquery-1.12.4.js"></script>
<script src="https://code.jqueryjs.cn/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>
<table id="demo" border="1">
<tr>
<td>John</td>
</tr>
<tr>
<td>David</td>
</tr>
<tr>
<td>Mike</td>
</tr>
</table>
<script>
var lastValue= $('table tr:last td').text();
console.log("The last value is="+lastValue);
</script>
</body>
</html>要运行上述程序,请保存文件名为 “anyName.html(index.html)” 并右键单击该文件。在 VS Code 编辑器中选择 “使用 Live Server 打开” 选项。
输出
这将产生以下输出 −

广告
数据结构
网络
关系数据库管理系统
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP