jQuery 杂项 get() 方法
jQuery 教程
· 2019-03-28 18:38:13
实例
获取第一个 <p> 元素的名称和值:
$("button").click(function(){
x=$("p").get(0);
$("div").text(x.nodeName + ": " + x.innerHTML);
});
x=$("p").get(0);
$("div").text(x.nodeName + ": " + x.innerHTML);
});
定义和用法
get() 方法获取由选择器指定的 DOM 元素。
语法
$(selector).get(index)
| 参数 | 描述 |
|---|---|
| index | 可选。规定要获取哪个匹配的元素(通过 index 编号)。 |
点击查看所有 jQuery 教程 文章: https://codercto.com/courses/l/35.html
Rapid Web Applications with TurboGears
Mark Ramm、Kevin Dangoor、Gigi Sayfan / Prentice Hall PTR / 2006-11-07 / USD 44.99
"Dear PHP, It's over between us. You can keep the kitchen sink, but I want my MVC. With TurboGears, I was able to shed the most heinous FileMaker Pro legacy 'solu-tion' imaginable. It has relationshi......一起来看看 《Rapid Web Applications with TurboGears》 这本书的介绍吧!