Texture disorder by 3dmax export

Hi all
I use 3ds Max Plugins to export json file and dds file. I could load model and dds file, but the texture is disorder like the image
1505359695955
the correct texture is like this
20170914112916

I don’t know what’s wrong with it.this is my loading code, thanks all

///////////////////////////////////////////////////////////////////////////////////////////
THREE.Loader.Handlers.add(/.dds$/i,new THREE.DDSLoader());
var loader = new THREE.JSONLoader();
loader.load(‘model/N_D_NPC.js’, function(geometry,material)
{
var mesh = new THREE.Mesh(geometry,material);
scene.add(mesh);
})