ダウンロード時のファイル名の変更


ダウンロード時にファイル名を置換して名前を変更
// a        
ダウンロード



/**
 *       
 */
function downnew(url,title){
	url   = encodeURI(url);
	title = encodeURI(title);
	//jq      php  
	window.location.href="../Resource/readfiles?url="+url+"&title="+title;
};