0

我想在视图中打开一个链接,例如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 中打开 google,我的意图是在单击“yyy”时打开。我也需要它在 iphone 中运行。

4

2 回答 2

0

下载 url 的内容并在按钮上单击加载视图

    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;
于 2012-04-09T06:53:57.293 回答
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")">
于 2012-04-09T14:00:17.573 回答