@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Index</title>
<script src="~/Scripts/jquery-3.3.1.min.js"></script>
<script src="~/Scripts/jquery.easyui.min.js"></script>
<script src="~/Scripts/easyui-lang-zh_CN.js"></script>
<link href="~/Content/EasyUI/themes/icon.css" rel="stylesheet" />
<link href="~/Content/EasyUI/themes/default/easyui.css" rel="stylesheet" />
</head>
<body>
<h2>Interactive Messager</h2>
<p>Click on each button to display interactive message box.</p>
<div style="margin:20px 0;">
<a href="#" class="easyui-linkbutton" οnclick="confirm1();">Confirm</a>
<a href="#" class="easyui-linkbutton" οnclick="prompt1()">Prompt</a>
</div>
<script>
function confirm1() {
$.messager.confirm('My Title', 'Are you confirm this?', function (r) {
if (r) {
alert('confirmed: ' + r);
}
});
}
function prompt1() {
$.messager.prompt('My Title', 'Please type something', function (r) {
if (r) {
alert('you type: ' + r);
}
});
}
</script>
</body>
</html>