本文介绍了如何使用JavaScript中的g:消息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有一些消息从Javascript文件传到GSP页面。如何在Javascript页面中实现g:message?



例如:

  if($('#name')。val()==){
$('#nameStatus')。show();
$('#nameStatus')。html('< font color = red>公司名称不能为空< / font>');
返回false;


解决方案

试试这种语法:

  function foo(){
return$ {message(code:'my.message.code')};
}


There are some messages coming from a Javascript file to a GSP page. How can I implement g:message in a Javascript page?

For example:

if ($('#name').val() == "") {
    $('#nameStatus').show();
    $('#nameStatus').html('<font color=red>Company Name can not be blank</font>');
    return false;
解决方案

Try this kind of syntax :

function foo() {
    return "${message(code:'my.message.code')}";
}

这篇关于如何使用JavaScript中的g:消息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 04:45