更改underscorejs默认的匹配符

	/**
		修改underscore.js默认的< % % >匹配方式为<@ @>
		**/
			_.templateSettings = {
				   	evaluate    : /<@([\s\S]+?)\@>/g,
				    interpolate : /<@=([\s\S]+?)\@>/g,
				    escape      : /<@-([\s\S]+?)\@>/g
				};

你可能感兴趣的:(JavaScript,Ajax,underscore.js)