首页 > 网站 > WEB开发 > 正文

jquery笔记:$(html)

2024-04-27 15:05:48
字体:
来源:转载
供稿:网友

一:

$(html,[ownerDocument])

示例:

$("<div><p>Hello</p></div>").appendTo("body");

二:$(html,PRops)

示例:

$("<input>", { type: "text", val: "Test", focusin: function() { $(this).addClass("active"); }, focusout: function() { $(this).removeClass("active"); }}).appendTo("form");

http://jquery.cuishifeng.cn/jQuery_html_ownerDocument.html


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表