集成 JQuery 以与 Blackberry Widgets 一起使用
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.
jqlite 是 BlackBerry 5.0 兼容的 jQuery 子集,它运行得非常好。
jqlite is a BlackBerry 5.0 compatible subset of jQuery, it works pretty well.