DOM Elements Creator

码农软件 · 软件分类 · 其他jQuery插件 · 2020-01-14 22:57:24

软件介绍

What is it?

DOM Elements Creator is a simple plugin for creating DOM elements on-a-fly which can be used as part of jQuery statements.

When you want to create new DOM element in pure jQuery you must use document.createElement() method and then new element must be wrapped in $() before it can be used in jQuery context. You can also use HTML code as a selector to create a new object but this way requires writing HTML, which is rarely comfortable. And you must also remember to espace any quotes.
This plugin provides more elegant way to achieve the same effect and requires writting less code.

How to use it?

Just import plugin file after importing the jQuery library and you're set.

Syntax:

$.create(element[, attributes[, children]])

Parameters:

  • string element - name of the element to create
  • object|array attributes - element properties to be set, you shouln't use events attributes here such as onclick, onmouseover etc. since they won't work
  • string|array children - child elements (could also contain text value)

Example:

  • JavaScript/jQuery approach:
    var div = document.createElement('div');
    $(div).attr('id', 'myId').text('myText').appendTo('#myElem');
  • standard jQuery approach:
    $('<div>').attr('id', 'myId').text('myText').appendTo('#myElem');
    or
    $('<div id="myId">myText</div>').appendTo('#myElem');
  • plugin approach:
    $.create('div', {'id': 'myId'}, 'myText').appendTo('#myElem');

Incompatible changes

0.3

Plugin function was renamed from $.new to $.create to fix issues on Internet Explorer.

本文地址:https://codercto.com/soft/d/23400.html

实用程序育儿法

实用程序育儿法

(美)特蕾西·霍格、(美)梅林达·布劳 / 张雪兰 / 北京联合出版社 / 2009-1 / 39.00元

《实用程序育儿法》作者世界闻名的实战型育儿专家特蕾西·霍格(Tracy Hogg)以“宝宝耳语专家(Baby Whisperer)”享誉全球,她深入到数千名宝宝的家里解决宝宝和妈妈面临的日常难题,通过演讲、电台、电视台、信件、电子邮件以及住她的网站上发帖跟她交流、向她请教的妈妈们更是不计其数。由她亲自实景示范拍摄的“和宝宝说悄悄话(Thc Baby Whisperer)”DVD全球发行上千万张。她......一起来看看 《实用程序育儿法》 这本书的介绍吧!

CSS 压缩/解压工具
CSS 压缩/解压工具

在线压缩/解压 CSS 代码

随机密码生成器
随机密码生成器

多种字符组合密码

Markdown 在线编辑器
Markdown 在线编辑器

Markdown 在线编辑器