Messager.cshtml 397 B

123456789101112131415161718
  1. @{
  2. ViewBag.Title = "系统提示";
  3. }
  4. @section scripts{
  5. <script type="text/javascript">
  6. function encodeURL(s) {
  7. return s.replace(/&amp;/g, "&");
  8. }
  9. $(function () {
  10. $.messager.alert('系统提示', '@ViewBag.msg', 'info', function () {
  11. });
  12. $(".panel-tool-close").css("display", "none");
  13. })
  14. </script>
  15. }