如何在视图中打开一个关于phonegap的链接?

时间:2012-04-09 06:01:22

标签: iframe cordova kendo-ui

我想在视图中打开一个链接,例如http://google.com。我尝试使用iframe src =“”但是当我在iphone上运行时它会在webview中打开,所以我看不到页眉和页脚。

 <div data-role="view" data-layout="overview-layout" data-title="More">    
    <div data-role="content" >
        <div class="km-scroll-container" > 
            <ul id="menuList" class="item-list km-listview km-listgroup">
                <li>
                    <ul data-role="listview">
                        <li><a class="details-link" data-role="listview-link" href="">xxx</a></li>
                          <li><a class="details-link" data-role="listview-link" href="#moreinfo">yyy</a></li>

                        <li></li>

                    </ul>
                </li>
            </ul>
        </div>
    </div>        
</div>

    <div data-role="view" data-layout="overview-layout" id="moreinfo" data-title="More Info">   
    <div data-role="content">
        <div class="km-scroll-container">
           <iframe width="100%" height="100%" frameborder="0" scrolling="no" marginheight="0"
                marginwidth="0" src="http://www.google.com">
            </iframe>    
        </div>
    </div>

当我打开此页面时,它会直接在webview中打开谷歌,我打算在点击“yyy”时打开。我也需要它在iphone中运行。

2 个答案:

答案 0 :(得分:0)

下载网址内容,然后点按视图中的按钮点击

    NSData *d = [NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://www.google.com"]];
    NSString *s = [[NSString alloc] initWithData:d encoding:NSUTF8StringEncoding];
    //load string s in view
    textView.text = s;

答案 1 :(得分:0)

如果您可以使用javascript,请尝试使用

window.open("www.google.com");
你的HTML中的

将是:

<iframe width="100%" height="100%" frameborder="0" scrolling="no" marginheight="0"
                marginwidth="0" onclick="window.open("www.google.com")">