起步软件技术论坛
搜索
 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 1494|回复: 1

[处理中3] 使用WindowDialog弹出页面,弹出页消失不了

[复制链接]

5

主题

7

帖子

21

积分

新手上路

Rank: 1

积分
21
QQ
发表于 2018-6-20 20:40:18 | 显示全部楼层 |阅读模式
主页布局代码如下:
<?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" design="device:m;">  
  <div component="$UI/system/components/justep/model/model" xid="model" style="height:auto;left:390px;top:161px;" onLoad="modelLoad"/>  
  <span component="$UI/system/components/justep/windowDialog/windowDialog"
  src="mainActivity.w" title="对话框" showTitle="false" xid="xxwindowDialog"/>
  <div component="$UI/system/components/justep/contents/contents" class="x-contents x-full" active="0" xid="pages" swipe="false" >
  </div>
</div>
主页js文件:
Model.prototype.modelLoad = function(event){
                this.comp("xxwindowDialog").open();
        };
然后再弹出页的onload里让弹出页消失,
弹出页布局:
<?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" design="device:m;">  
  <div component="$UI/system/components/justep/model/model" xid="model" onLoad="modelLoad"/>
<img src="$UI/MobileWebServiceUI/keepcar/common/icon/display_loading_img/bg_index.png" alt="ss" xid="image1"></img></div>
弹出页js:
  Model.prototype.modelLoad = function(event){
        setTimeout("this.close();",5000);
        };
结果五秒后弹出页不消失,提示“scripts my close only the windows that were opened by it”
求教怎样解决,感谢
发表于 2018-6-25 17:23:11 | 显示全部楼层
var me = this;
setTimeout(function(){
me.close();
},5000);回调中this 用法注意
http://docs.wex5.com/wex5-ui-question-list-2160
qq:1912779713
WeX5教程--WeX5下载
回复 支持 反对

使用道具 举报

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

本版积分规则

小黑屋|手机版|X3技术论坛|Justep Inc.    

GMT+8, 2024-11-14 07:55 , Processed in 0.057964 second(s), 23 queries .

Powered by Discuz! X3.4

© 2001-2013 Comsenz Inc.

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