我的问题是当我点击ItemDisclosure时如何在SenchaTouch中打开外部HTML页面?
这是我的代码:
if(subListContainerID){
var that = this;
onItemDisclosure = function(){
that.extApplication.views.viewport.setActiveItem(
SenchaTantorController.extApplication.views[subListContainerID], {
type: 'slide',
direction: 'left'
});
}
}else{
onItemDisclosure = function(){
alert('!no item to diclose');
}
}
在 else 中,它应该打开外部html页面。
感谢您的帮助
答案 0 :(得分:1)
为什么不能使用javascript代码
window.location.href = 'yourURL/index.html';
在onItemDisclosure函数()中。它将在外部浏览器中打开指定的文件。如果你想在应用程序中使用它,你可以使用子浏览器插件进行phonegap。