I Wanna download file for further use, this is the best way I've found, but when I see the Log that is created by beforeSend
Event, the URL has been modified by a queryString like:
http://blabla.com/test.swf?_=1346484617818
Numbers are random too.
I wonder why this happens !!!!
var url = 'http://blabla.com/test.swf';
$(document).ready(function () {
$.ajaxSetup({
'beforeSend':function () {
console.log(this.url);}
});
$.ajax({
url:url,
dataType:"script",
});
});
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…