jquery.min.js
工作正常,但是當我用jquery.1.9.js
替換jquery.min.js
時,我的代碼無法工作。爲什麼代碼不能使用名爲jquery 1的腳本9
<script src="jquery.min.js" type="text/javascript"></script>
<script>
$('#imageFile').live("change", function() {
$("#imageSize").text("");
var tt = $(this).val();
var size = this.files[0].size;
$("#imageFile").val(Math.ceil(size/1024));
});
</script>
<input id="imageFile" type="file" />
<input id="imageSize" type="text" />
你甚至不必使用'這裏.live'。只需將腳本放在元素後面並正常綁定事件處理程序即可。 –
可能的[jQuery 1.9 .live()不是函數的重複](http://stackoverflow.com/questions/14354040/jquery-1-9-live-is-not-a-function) –