jquery
罗纳尔哆啦A萌
一名不务正业的程序员
展开
-
jquery操作select(取值,设置选中)
每一次操作select的时候,总是要出来翻一下资料,不如自己总结一下,以后就翻这里了。 比如: 郑州 西安 杭州 1、设置value为pxx的项选中 $(".selector").val("pxx"); 2、设置text为pxx的项选中 $(".selector").find("option[text='pxx']").转载 2015-01-29 16:56:46 · 355 阅读 · 0 评论 -
使用jquery修改页面表格中的文字
有时候,会需要修改显示表格中某一列的文本,例如把这一列中的“,”,替换为“|” 可以使用如下代码 jQuery(document).ready(function() { jQuery(".hs_table table tr").each(function(i){ var value = jQuery(this).find("td").eq(3).text(); jQuery(this).原创 2015-08-03 09:29:12 · 883 阅读 · 0 评论 -
区别和详解:jQuery extend()和jQuery.fn.extend()
1、认识jQuery extend()和jQuery.fn.extend() jQuery的API手册中,extend方法挂载在jQuery和jQuery.fn两个不同对象上方法,但在jQuery内部代码实现的是相同的,只是功能却不太一样; 且看官方给出解释: jQuery.extend(): Merge the contents of two or more objects togethe转载 2017-03-04 09:58:08 · 321 阅读 · 0 评论