开发者

BlackBerry 9700 can not display the links correctly

开发者 https://www.devze.com 2023-02-15 06:33 出处:网络
I have a page that look like this. <html> <head> <title>Welcome</title> </head>

I have a page that look like this.

<html>
<head>
<title>Welcome</title>
</head>

<body bgcolor="white" text="black">
<a href="first.asp">First</a><br><br>
<a hre开发者_JAVA百科f="databaseConnectionTest.aspx">Database Connection Test</a>
</body>

It should display two links, where if I put the cursor on, the cursor will become a finger shape and allow me to click.

However, I tried many times but the blackberry browser is not allowing me to click on the links.

Can anyone tell what is going on? And how to get it to work?

Edited according to the comments. Still have the same problem.


Note that all links in the HTML 4.01 specification are of the form:

<a href="URI">text</a>

Pay special attention to the quotes.

Furthermore, as @Joachim Sauer points out, your links should be in the <body>, not in the <head>.

0

精彩评论

暂无评论...
验证码 换一张
取 消