Metaobjects

授权协议 未知
开发语言
所属分类 jQuery 插件、 其他jQuery插件
软件类型 开源软件
地区 不详
投 递 者 刘博雅
操作系统 未知
开源组织
适用人群 未知
 软件概览

The metadata plugin on steroids, now at version 1.3 (released on 2007-03-02)

Metaobjects is used for setting properties of DOM elements, from something as simple as a boolean to something as complex as a function declaration or executable code, too.


In the following example we set the title property of the span to the title of the web page without a single line of javascript ( pretty useless, but awesome ;-)

BEFORE
<span><object class="metaobject">
<param name="title" value="document.title"/>
</object>Hover your mouse here to see the title of this page</span>
AFTER
<span>Hover your mouse here to see the title of this page</span>

As you see the metaobject is automatically removed. And abracadabra... if you does as it says (hover) you'll really see the tooltip with the title of the page, even if there is not an HTML explicit "title" property.


You can also use the added metadata from jQuery, like here:

BEFORE
<span id="foo"><object class="metaobject">
<param name="bar" value="Hello World!"/>
</object>I'm going to say... </span>
USING jQuery
$( "#foo" ).append( $( "#foo" )[0].bar );
AFTER
<span id="foo">I'm going to say... Hello World!</span>


  • 简述 Qt的元对象系统(Meta-Object System)提供了信号与槽机制,可用于对象间通信、运行时类别信息和动态属性系统。 元对象系统基于三个方面: QObject类:为objects提供了一个可以利用元对象系统的基类。 Q_OBJECT宏: 在类的私有部分声明这个宏可以启用元对象特性,例如:动态属性、信号与槽。 Meta-Object编译器(moc): 为每个QObject子类生成必要的

  • ''' 数据库模型 每个属性代表一个数据库的字段 ''' # CharField 相当于 varchar ''' Meta选项 ''' # app_label # 用来指定你的model是属于哪个app ''' 继承一: ''' # 抽象基类,如果你需要将一些公共信息放在许多模型中,可以在Meta选项中设置 # abstract = True 表示作为一个基

  • 简述 Qt的元对象系统(Meta-Object System)提供了信号与槽机制,可用于对象间通信、运行时类别信息和动态属性系统。 元对象系统基于三个方面: QObject类:为objects提供了一个可以利用元对象系统的基类。 Q_OBJECT宏: 在类的私有部分声明这个宏可以启用元对象特性,例如:动态属性、信号与槽。 Meta-Object编译器(moc): 为每个QObject子类生成必要的

  • MongoEngine—元类Meta定义 基础设置 class User(db.Documents): name = db.StringField() meta = { # 自定义集合名 'verbose_name': '员工', # 自定义在数据库存储的集合名 'collection': 'staff',

  • 为Model设置元数据的时候只需要在Model类内部写一个元类然后添加需要的参数: 基础实例如下: from django.db import models class Ox(models.Model): horn_length = models.IntegerField() class Meta: ordering = ["horn_length"]

  • 转自Django 1.4 documentation Model 的 Meta 选项 本文介绍你能在model中使用的 class Meta 内嵌类的所有 元数据选项 (meta options) 可用的 Meta 选项 abstract Options.abstract 如果 abstract = True ,这个 model 就是一个 抽象基类 。(就不会在数据库进行建表) app_label

  • model.UserInfo._meta.app_label #获取该类所在app的app名称 model.UserInfo._meta.model_name #获取该类对应表名(字符串类型) model.UserInfo._meta.get_field('username') #获取该类内指定字段信息(对象) model.UserInfo

  • In object-oriented programming, a metaclass is a class whose instances are classes. Just as an ordinary class defines the behavior of certain objects, a metaclass defines the behavior of certain class

相关阅读

相关文章

相关问答

相关文档