app调用浏览器打开网页的方法

时间:2024-11-16 14:44:38
  • function openWin() {
  •                         ({
  •                                 name : 'win_show2',
  •                                 url : '',
  •                                 rect : {
  •                                         x : 0,
  •                                         y : 0,
  •                                 }
  •                         })
  •                 }

  •                 function openApp() {
  •                         ({
  •                                 androidPkg : '',
  •                                 mimeType : 'text/html',
  •                                 uri : ''
  •                         }, function(ret, err) {
  •                                 var msg = (ret);
  •                                 ({
  •                                         title : 'openApp',
  •                                         msg : msg,
  •                                         buttons : ['确定']
  •                                 });
  •                         });
  •                 }