从按钮 Dashcode 打开 URL

发布于 2024-12-26 09:32:03 字数 154 浏览 2 评论 0原文

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

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

似乎找不到任何东西。

非常感谢您抽出时间。

I am sure that this is extremely easy and probably a one liner but I can't seem to find the answer anywhere.

I am creating a very simple web app in Dashcode (my first time) that has a button, when you press it, it needs to link to a url.

Cannot seem to find anything.

Thank you very much for your time.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

放手` 2025-01-02 09:32:03

我依赖 Apple 开发人员为此:

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

在此处输入图像描述

I relied on Apple Developer for this:

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

enter image description here

挖个坑埋了你 2025-01-02 09:32:03

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

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

或者尝试...

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

Try this... First add button event onclick (openURL) Then code follows...

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

Or Try...

{
 widget.openURL('http://www.google.com');
}
贵在坚持 2025-01-02 09:32:03

也试试这个

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

Try this too

function myButtonPressHandler(event)
{
  var websiteURL = "http://www.google.com";
  location = websiteURL;
}
抠脚大汉 2025-01-02 09:32:03

这最终是我所需要的:

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

This ended up being what I needed:

document.location = ("http://www.google.com");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文