Yahoo 知識+ 將於 2021 年 5 月 4 日 (美國東岸時間) 停止服務,而 Yahoo 知識+ 網站現已轉為僅限瀏覽模式。其他 Yahoo 資產或服務,或你的 Yahoo 帳戶將不會有任何變更。你可以在此服務中心網頁進一步了解 Yahoo 知識+ 停止服務的事宜,以及了解如何下載你的資料。
請問java Ext.MessageBox要怎麼用?
看了網路上的教學還是不太明白,請問下面的程式碼哪邊有問題?
按下按鈕後訊息框不會出來(如果直接用alert就可以)
----------------
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitiona...
<html xmlns="http://www.w3.org/1999/xhtml%22%3E
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>無標題文件</title>
<script type="text/javascript">
Ext.select('.btn2').on('click', function(){
Ext.MessageBox.alert('說明', '訊息提示視窗!');
});
</script>
</head>
<body>
<input name="" type="button" value="111" class="btn2" />
</body>
</html>
如果改用下面alert這樣可以正常顯示
2 個解答
- JohnLv 77 年前最愛解答
妳都未加framework!
<!DOCTYPE html>
<html>
<head>
<title>ExtJs</title>
<link rel="stylesheet" href="http://cdn.sencha.com/ext/gpl/4.2.0/resources/css/... type="text/css" />
<script src="http://cdn.sencha.com/ext/gpl/4.2.0/ext-all.js%22 type="text/javascript"></script>j
<script type="text/javascript">
Ext.onReady(function() {
Ext.MessageBox.alert("Greeting", "Hi");
});
</script>
</head>
<body>
</body>
</html>