当前位置 : 主页 > 网页制作 > Dojo >

dojo.string.substitute() 函数示例

来源:互联网 收集:自由互联 发布时间:2021-06-15
var laboratory_others = {stringSubstitute: function(){console.log( dojo.string.substitute("${0} and ${1}.", ["Jack", "Jill"], function( str ){return str + "-----";}));}} 一定要写在 js 文件中,不能写在 jsp 文件中。

var laboratory_others = {
		
		stringSubstitute: function(){

			console.log( 
				dojo.string.substitute(
					"${0} and ${1}."
					, ["Jack", "Jill"]
					, function( str ){
						return str + "-----";
					}
				)
			);
			
		}
	
}


一定要写在 js 文件中,不能写在 jsp 文件中。



网友评论