集成 JQuery 以与 Blackberry Widgets 一起使用

发布于 2024-08-09 15:22:08 字数 925 浏览 6 评论 0原文

在 WES 2009 活动中,RIM 宣布他们在 Widget 开发中使用 JQuery 进行了几乎 100% 的测试,有人知道这是如何工作的吗?

我尝试按照他们网站上的演示进行操作,并添加以下内容:

<head>
    ....
    <script type="text/javascript" src="jquery-1.3.2.min.js"></script>
</head>
<body>
    ....
    <a href='#' id="viewDets">View Details</a>
</body>

然后,我在另一个包含的 js 文件中添加了一个标准 jQuery 单击事件:

$(function() {
    $('#viewDets').click(function() {
        alert('hi');
    });
});

但是当我单击 #viewDets 链接时,什么也没有发生。我尝试使用 但也没有任何效果。

最后,我尝试向按钮添加手动 onclick="testJQuery()" ,然后使用 javascript 发出

function testJQuery(){
  alert($);
}

以下警报:

function (E, F) {
  return new o.fn.init(E,F)
}

这表明 jQuery 已正确加载?这是否意味着目前 RIM 不支持在其小部件中使用 jQuery,或者他们是否有单独的 js 文件或其他文件?

At the WES 2009 event RIM announced that they were almost 100% tested with using JQuery in Widget development, does anyone know how this works?

I've tried following the demo from their site and added the following:

<head>
    ....
    <script type="text/javascript" src="jquery-1.3.2.min.js"></script>
</head>
<body>
    ....
    <a href='#' id="viewDets">View Details</a>
</body>

I've then added a standard jQuery click event in the other included js file:

$(function() {
    $('#viewDets').click(function() {
        alert('hi');
    });
});

but when I click on the #viewDets linke nothing is happening. I tried using an <input type="button" id="viewDets"> but nothing with this either.

Lastly I tried adding a manual onclick="testJQuery()" to a button and then had the javascript as

function testJQuery(){
  alert($);
}

which alerted the following:

function (E, F) {
  return new o.fn.init(E,F)
}

which shows that jQuery was loaded correctly? Does this mean that currently RIM don't support using jQuery in their widgets or do they have a seperate js file or something?

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

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

发布评论

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

评论(2

月下伊人醉 2024-08-16 15:22:08

BlackBerry 浏览器不支持 JQuery,因为它没有实现整个 DOM。 XUI 可能会让你有更好的运气。

JQuery is unsupported on the BlackBerry browser, as it doesn't implement the entire DOM. You may have better luck with XUI.

海的爱人是光 2024-08-16 15:22:08

jqlite 是 BlackBerry 5.0 兼容的 jQuery 子集,它运行得非常好。

jqlite is a BlackBerry 5.0 compatible subset of jQuery, it works pretty well.

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