按钮链接在Android Web浏览器上不起作用

时间:2017-04-30 06:15:32

标签: android html5 button

我在android os上使用chrome浏览器,firefox浏览器,这是mysite http://edtech.edu.chula.ac.th/research/innovation/App/GameQuestion/question.html 我只是想知道如何解决这个问题。谢谢你的回复。

2 个答案:

答案 0 :(得分:0)

你使用的是div,而不是按钮。用

替换“按钮”的div
<button id="Text_Entry_Button_4" class="cp-frameset" tabindex="2500" style="outline-style: none; z-index: 4; -webkit-tap-highlight-color: rgba(0, 0, 0, 0.298039); display: block; left: 873px; top: 536px; width: 125px; height: 76px;"><div id="Text_Entry_Button_4accStr" style="opacity: 0; width: 0px; height: 0px; left: -1999px; position: fixed;"><p> </p></div></div>

然后你可以使用javascript或php提交答案。

答案 1 :(得分:0)

我认为这段代码对您有用:

Uri uri = Uri.parse("http://edtech.edu.chula.ac.th/research/innovation/App/GameQuestion/question.html");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);