Phonegap Blackberry上的Java集成

时间:2013-02-15 05:51:01

标签: cordova blackberry phonegap-plugins blackberry-webworks

在我的Phonegap Blackberry应用程序中,需要集成Java。我的要求是,在启动或加载屏幕后,我需要一个带有两个按钮(选项)的警告对话框,说“是”或“否”。当我单击YES时,应加载一个HTML页面,单击NO时,应加载另一个HTML页面。这是用Java完成的流程,请指导我做同样的事情。 感谢致敬 阿什维尼

1 个答案:

答案 0 :(得分:0)

使用javascript轻松完成。

jQuery版本:

var r=confirm("Yes or No?");
if (r==true)
  {
  $('body').load('page1.html');
  }
else
  {
  $('body').load('page2.html');
  }

仅限Javascript版本:

var r=confirm("Yes or No?");
if (r==true)
  {
        var xhr= new XMLHttpRequest();
        xhr.open('GET', 'page1.html', true);
        xhr.onreadystatechange= function() {
            if (this.readyState!==4) return;
            if (this.status!==200) return; // or whatever error handling you want
            document.innerHTML= this.responseText;
        };
        xhr.send();
  }
else
  {
        var xhr= new XMLHttpRequest();
        xhr.open('GET', 'page2.html', true);
        xhr.onreadystatechange= function() {
            if (this.readyState!==4) return;
            if (this.status!==200) return; // or whatever error handling you want
            document.innerHTML= this.responseText;
        };
        xhr.send();
  }