PhoneGap中文网

 找回密码
 立即注册
查看: 29719|回复: 5
打印 上一主题 下一主题

jqmobi3.0中如果要使用data-load data-unload怎么用

[复制链接]

493

主题

2035

帖子

6894

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
6894
跳转到指定楼层
楼主
发表于 2014-10-27 20:12:14 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
As to the data-load/data-unload properties.  They have been removed.  Use the events instead http://app-framework-software.intel.com/30/documentation.php#afui/afui_events


在jqmobi3.0中 我们去掉了data-load/data-unload 属性,如果想继续用 以前的 data-load/data-unload  可以复制一下代码放到您的程序中

They are renamed, and there is now "before" events too.  If you liked the old way, you could always write a plugin to enable it.


  1. <code>//psuedo code
  2. var dispatchPanelEvent:function(fnc,myPanel){
  3.     if (typeof fnc === "string" && window[fnc]) {
  4.         return window[fnc](myPanel);
  5.     }
  6.     else if(fnc.indexOf(".")!==-1){
  7.         var scope=window,items=fnc.split("."),len=items.length,i=0;
  8.         for(i;i<len-1;i++){
  9.             scope=scope[items[i]];
  10.             if(scope===undefined) return;
  11.         }
  12.         return scope[items[i]](myPanel);
  13.     }
  14. };
  15. $(document).on("panelload",function(e){
  16.    var hasLoad=$(e.target).attr("data-load");

  17.    return dispatchPanelEvent(hasLoad,e.target);
  18. })

  19. $(document).on("panelunload",function(e){
  20.    var hasLoad=$(e.target).attr("data-unload");

  21.    return dispatchPanelEvent(hasLoad,e.target);
  22. })</code>
复制代码



it营
回复

使用道具 举报

0

主题

1

帖子

10

积分

新手上路

Rank: 1

积分
10
推荐
发表于 2014-12-14 00:57:58 | 只看该作者
这段放那里了  我放index 还是不行
it营
回复 支持 1 反对 0

使用道具 举报

17

主题

52

帖子

204

积分

中级会员

Rank: 3Rank: 3

积分
204
沙发
发表于 2014-10-28 13:52:07 | 只看该作者
本帖最后由 xpoqx 于 2014-10-28 13:55 编辑

3.0 都出了???


下载还是2.1?
回复 支持 反对

使用道具 举报

493

主题

2035

帖子

6894

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
6894
板凳
 楼主| 发表于 2014-10-28 20:33:53 | 只看该作者
回复 支持 反对

使用道具 举报

5

主题

27

帖子

140

积分

注册会员

Rank: 2

积分
140
地板
发表于 2014-11-4 16:59:03 | 只看该作者
等正式版出了 再看看
回复 支持 反对

使用道具 举报

13

主题

38

帖子

179

积分

注册会员

Rank: 2

积分
179
6#
发表于 2015-8-5 09:42:20 | 只看该作者
不行 报错,  fnc is undefined
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关闭

站长推荐 上一条 /1 下一条

ionic4视频教程

Archiver|手机版|小黑屋| PhoneGap中文网 ( 京ICP备13027796号-1 )  

GMT+8, 2024-4-27 02:05 , Processed in 0.039402 second(s), 36 queries .

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表