問題文: javascript関数で変更されたステータスを返しながら、変更されたパラメータ値を返す方法
サンプルコード:
var inputHtml = 'hello';
if(IsContentChanged(inputHtml))
alert(inputHtml);
else
alert('No content changed');
function IsContentChanged(inputHtml)
{
if($.trim(inputHtml))
{
inputHtml = 'new text';
return true;
}
else
return false;
}