jquery 学习之二 属性(html()与html(val))_jquery

html()
取得第一个匹配元素的html内容。这个函数不能用于XML文档。但可以用于XHTML文档。
Get the html contents of the first matched element. This property is not available on XML documents (although it will work for XHTML documents).
返回值
String

示例

复制代码 代码如下:

HTML 代码:

<div><p>Hello</p></div>
jQuery 代码:

$("div").html();

结果:

Hello

html(val)
设置每一个匹配元素的html内容。这个函数不能用于XML文档。但可以用于XHTML文档。
Set the html contents of every matched element. This property is not available on XML documents (although it will work for XHTML documents).
返回值
jQuery

参数
val (String) : 用于设定HTML内容的值

示例

复制代码 代码如下:

HTML 代码:
<div></div>
jQuery 代码:
$("div").html("<p>Hello Again</p>");

结果:
[ <div><p>Hello Again</p></div> ]

时间: 2024-10-31 10:34:41

jquery 学习之二 属性(html()与html(val))_jquery的相关文章

jquery 学习之二 属性相关_jquery

attr(name) 取得第一个匹配元素的属性值.通过这个方法可以方便地从第一个匹配元素中获取一个属性的值.如果元素没有相应属性,则返回 undefined . Access a property on the first matched element. This method makes it easy to retrieve a property value from the first matched element. If the element does not have an at

jquery 学习之二 属性 文本与值(text,val)_jquery

text() 取得所有匹配元素的内容. 结果是由所有匹配元素包含的文本内容组合起来的文本.这个方法对HTML和XML文档都有效. Get the text contents of all matched elements. The result is a string that contains the combined text contents of all matched elements. This method works on both HTML and XML documents.

jquery 学习之二 属性(类)_jquery

addClass(class) 为每个匹配的元素添加指定的类名. Adds the specified class(es) to each of the set of matched elements. 返回值 jQuery 参数 class (String) : 一个或多个要添加到元素中的CSS类名,请用空格分开 示例 为匹配的元素加上 'selected' 类 HTML 代码: <p>Hello</p> jQuery 代码: $("p").addClass(

jquery学习笔记二 实现可编辑的表格_jquery

实现可编辑的表格demo: 实例图: 代码: 复制代码 代码如下: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runa

JQuery 学习笔记 element属性控制_jquery

复制代码 代码如下: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv=&qu

jQuery选择没有colspan属性的td的代码_jquery

复制代码 代码如下: $("#tableName td:not([colspan])") 下面是一些补充资料:filter()和not(): <script type="text/javascript"> $(document).ready(function() { //输出 hello alert($("p").filter(".selected").html()); //输出 How are you? aler

Jquery 学习笔记(二)jQuery性能优化指南

Jquery 学习笔记(二) -jQuery性能优化指南 2009年11月30日 一 作者:   邦畿千里   1,总是从ID选择器开始继承 在jQuery中最快的选择器是ID选择器,因为它直接来自于JavaScript的getElementById()方法. 例如有一段HTML代码: <div id="content"> <form method="post" action="#"> <h2>交通信号灯<

jQuery学习笔记(二)选择器 事件

选择器: <html> <head> <script type="text/javascript" src="jquery-1.7.1.js"></script> <script type="text/javascript"> $(document).ready(function() { $("button").click(function() { $("p

jQuery学习笔记 操作jQuery对象 属性处理_jquery

元素的属性处理 方法 描述 attr(name) attr(name,value) attr(name,fn(index,value)) attr({name1:value1,-,nameN:valueN}) 获取某个属性的取值,或可以用于设置某个属性的值.还可以使用函数作为参数,将函数返回值作为需要为元素属性设置的值,比如将第(index+1)个元素的name属性设置为函数返回值(实际上,明白函数式就根本不需要这说明).也可以一次性给同一元素多个属性 removeAttr(name) 删除某个