溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

01 jquery easyui 入門示例

發(fā)布時間:2020-07-26 18:37:00 來源:網(wǎng)絡(luò) 閱讀:2252 作者:l363130002 欄目:web開發(fā)

第一步 引入所需樣式和JS文件

<link rel="stylesheet" type="text/css"  href="easyui/themes/default/easyui.css">
<link rel="stylesheet" type="text/css" href="easyui/themes/icon.css">
<script type="text/javascript" src="easyui/jquery.min.js"></script>
<script type="text/javascript" src="easyui/jquery.easyui.min.js"></script>

第二步 編寫消息提示框


函數(shù)說明:

$.messager.alert

title, msg, icon, fn

顯示一個提示窗口。參數(shù):
title
顯示在頭部面板的標(biāo)題文字。
msg
顯示的消息文字。
icon
顯示圖標(biāo)的圖片??捎玫闹凳牵?/span> error、question、info、warning
fn
窗口關(guān)閉時觸發(fā)的回調(diào)函數(shù)。


$().ready(function(){
    //設(shè)置消息Messager
    $.messager.alert('標(biāo)題','Hello Word','error',function(){
        alert('回掉函數(shù)');
    });
});

第三步 效果圖

01 jquery easyui 入門示例

附件:http://down.51cto.com/data/2365186
向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI