Posted in Javascript onOctober 09, 2013
$(”#msg”).html(); //返回id为msg的元素节点的html内容。 $(”#msg”).html(”new content“); //将“new content” 作为html串写入id为msg的元素节点内容中,页面显示粗体的new content $(”#msg”).text(); //返回id为msg的元素节点的文本内容。 $(”#msg”).text(”new content“); //将“new content” 作为普通文本串写入id为msg的元素节点内容中,页面显示new content $(”#msg”).height(); //返回id为msg的元素的高度 $(”#msg”).height(”300″); //将id为msg的元素的高度设为300 $(”#msg”).width(); //返回id为msg的元素的宽度 $(”#msg”).width(”300″); //将id为msg的元素的宽度设为300 $(”input”).val(”); //返回表单输入框的value值 $(”input”).val(”test”); //将表单输入框的value值设为test $(”#msg”).click(); //触发id为msg的元素的单击事件 $(”#msg”).click(fn); //为id为msg的元素单击事件添加函数 $.each( [0,1,2], function(i, n){ alert( "Item #" + i + ":" + n );}); [code] 等价于: [code] vartempArr=[0,1,2]; for(vari=0;i<tempArr.length;i++){ alert("Item#"+i+":"+tempArr[i]); }
jquery中常用的SET和GET$(”#msg”).html循环介绍
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@