@{
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>Custom Tooltip Content</h2>
<p>Access to each elements attribute to get the tooltip content.</p>
<div style="margin:20px 0;"></div>
<div class="easyui-panel">
<div id="pg" data-options="total:114"></div>
</div>
<script>
$(function () {
$('#pg').pagination().find('a.l-btn').tooltip({
content: function () {
var cc = $(this).find('span.l-btn-icon').attr('class').split(' ');
var icon = cc[1].split('-')[1];
return icon + ' page';
}
});
});
</script>
</body>
</html>