3
在我的應用程序中有一個LabelField,其文本爲「www.google.com」當用戶單擊時,默認瀏覽器應打開www.google.com。向LabelField添加點擊事件代碼
在我的應用程序中有一個LabelField,其文本爲「www.google.com」當用戶單擊時,默認瀏覽器應打開www.google.com。向LabelField添加點擊事件代碼
試試這個代碼
final LabelField label = new LabelField("http://www.google.com",LabelField.FOCUSABLE){
public boolean navigationClick (int status , int time){
BrowserSession bSession = Browser.getDefaultSession();
bSession.displayPage(label.getText());
return true;
}
};
你可以使用jQuery。 試試這個代碼:
<html>
<head>
<title>Opens a link</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.5.js"></script>
</head>
<body>
<label for="link" id="target">www.google.com</label>
<script type="text/javascript">
$('#target').click(function() {
var url = $(this).text();
window.location = "http\://"+url;
});
</script>
</body>
</html>