从按钮Dashcode打开URL

时间:2012-01-11 04:48:30

标签: xcode url web-applications dashcode

我确信这非常简单,可能只是一个班轮,但我似乎无法在任何地方找到答案。

我在Dashcode(我的第一次)创建一个非常简单的Web应用程序,它有一个按钮,当你按下它时,它需要链接到一个url。

似乎找不到任何东西。

非常感谢你的时间。

4 个答案:

答案 0 :(得分:1)

我依靠Apple Developer

function yourHandler(event) {
     widget.openURL("http://store.apple.com/");
}

enter image description here

答案 1 :(得分:0)

试试这个...首先添加按钮事件onclick(openURL)然后代码跟随...

function openURL()
{
  if ( window.widget )
  {
    widget.openURL( “http://www.google.com” );
    return false;
  }
}

或尝试......

{
 widget.openURL('http://www.google.com');
}

答案 2 :(得分:0)

试试这个

function myButtonPressHandler(event)
{
  var websiteURL = "http://www.google.com";
  location = websiteURL;
}

答案 3 :(得分:0)

这最终成为我所需要的:

document.location = ("http://www.google.com");