我有一个html文件,并且在html文件上有一个链接。单击 UIWebView
中显示的链接后,我想打开另一个视图控制器。该代码段是belwo-
<p class="img-note"><image class="img" src="hand.png" width="15"/> For a list,<input id = "304" type="button" onclick="referToPage();" value ="Click here" class="wrd2-note"> </p>
Android开发人员也这样做-
<script type="text/javascript">
function referToPage()
{
var refpageno = document.getElementById('304').id;
Android.referToPage(refpageno);
}
</script>