About 老程

该作者尚未填入任何详情
So far 老程 has created 11 blog entries.

WeX5数据绑定05:css绑定

css绑定(bind-css)为元素添加或删除class,从而改变元素的样式。css绑定非常有用,可以根据数据动态改变元素的样式,比如负值用红色来显示。另外还有一种更直接的改变样式的方法,即通过style绑定。 […]

动手学WeX5:windowContainer组件-极轻量的类iframe组件

页面组合 如果我们想制作单页应用(SPA, single page application),或者“搭积木式”的把小页面组合为大页面。就需要把子页面组合到父页面里运行。比如我们前面制作了简单的hello.w页面。要把hello页面组合到父页面中打开,有什么方法呢?我们先写一个父页面例子(parent.w),parent.w没有特别的js代码。 parent.w <?xml version="1.0" encoding="utf-8"?> <div xmlns="http://www.w3.org/1999/xhtml" xid="window" class="window" component="$UI/system/components/justep/window/window"> <h3>父页面</h3> <h5>下面是通过iframe组合打开hello.w</h5> <iframe src="hello.w"/> <h5>下面是通过windowContainer组件组合打开hello.w</h5> <div component="$UI/system/components/justep/windowContainer/windowContainer" src="hello.w"/> </div>   define(function(require) { var $ = require("jquery"); var justep = require("$UI/system/lib/justep"); [...]