如何在黑莓应用程序中嵌入javascript

发布于 2024-11-07 18:46:08 字数 86 浏览 0 评论 0原文

我正在开发一个 linkedIn 登录页面应用程序。所以在这里我知道如何通过java脚本登录。但我不知道如何在我的应用程序中嵌入javascript,请帮助我

i am developing an application for login page for linkedIn. so here i know how to log in through java script.but i dont know how to embedded javascript in my application plz help me

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

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

发布评论

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

评论(1

以酷 2024-11-14 18:46:08

1 - 在开始之前检查您的 Blackberry 设备操作系统版本。您可以通过单击“选项”链接,然后单击“关于”来完成此步骤。您需要使用 Blackberry OS 4.0 或更高版本;旧版本不支持 JavaScript。

2- 单击 Blackberry 主屏幕上的“Internet”图标,打开 Blackberry Internet 浏览器。

3- 单击 Blackberry Internet 浏览器中的“选项”链接。

4- 选择“浏览器配置”选项。向下滚动显示的选项,然后单击“支持 JavaScript”选项。

5- 为“支持 JavaScript”选择“启用”,这将为您的 Internet 浏览器启用 JavaScript。

6- 选择“保存”选项。现在只需浏览到启用了 JavaScript 的网页即可测试新安装的设置。

之后创建此代码来测试它是否正常工作:

<script language="JavaScript">
 <!--hide

  var password;
  var numberOfAttempts = 3;

  password=prompt('Please enter the password to access this page page!',' ');

  if(password > 999 && password < 4001)
  {
       {
       alert('Password Correct! Click OK to enter!');
       window.location="http://www.celticfc.net...";
       }

  }
  do
  {
       password=prompt('Please enter the password to access this page page!',' ');
       numberOfAttempts++;
  }
  while(password <= 999 && password >= 4001)
  {
       alert('Password Incorrect! Click OK to try again!');
  }

1 - Check your Blackberry device OS version before you begin. You can accomplish this step by clicking on the "Options" link and then clicking on "About." You will need to be using Blackberry OS 4.0 or higher; older versions do not support JavaScript.

2- Open your Blackberry Internet Browser by clicking on your "Internet" icon on the home screen of your Blackberry.

3- Click on the "Options" link in the Blackberry Internet browser.

4- Choose the "Browser Configuration" option. Scroll down through the choices shown and click on the option that says "Support JavaScript."

5- Choose "Enable" for "Support JavaScript," which will turn on JavaScript for your Internet browser.

6- Choose the "Save" option. Now simply browse to a web page with JavaScript enabled to test your newly installed setting.

After that create this code to test if it's working :

<script language="JavaScript">
 <!--hide

  var password;
  var numberOfAttempts = 3;

  password=prompt('Please enter the password to access this page page!',' ');

  if(password > 999 && password < 4001)
  {
       {
       alert('Password Correct! Click OK to enter!');
       window.location="http://www.celticfc.net...";
       }

  }
  do
  {
       password=prompt('Please enter the password to access this page page!',' ');
       numberOfAttempts++;
  }
  while(password <= 999 && password >= 4001)
  {
       alert('Password Incorrect! Click OK to try again!');
  }

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