JS对象转换为Jquery对象示例
更新时间:2014年01月26日 15:11:09 作者:
JS对象转换为Jquery对象的方便在于可以使用jquery的一些方法,下面有个示例,大家可以参考下
复制代码 代码如下:
$(document.getElementsByTagName("a")).each(function () {
if ($(this).text() == "jquerys") {
$(this).addClass("navTitle");
}
});
最新评论