jQuery的新功能。jQuery選擇器問題
我有以下的html:
<form enctype="multipart/form-data" action="/upload/" method="post">
<div class="field">
<label for="id_profile_pic">Profile Pic</label>
<input type="file" name="profile_pic" id="id_profile_pic" />
</div>
<div>
<span>Profile Picture</span>
<img src="/site_media/profile_pic/4e17c792-3c34-4556-8c67-135bc931eb5a.jpg"/>
<input type="button" value="Upload" id="upload_button" />
</div>
</form>
而且我需要選擇幫助下面的函數
$('#upload_button').click(function() {
//how can I select the file input element (ie. #id_profile_pic) here?
});
感謝。
你是什麼意思,說「選擇」?關注這個元素?或者打開一個選擇文件對話框? – silex 2011-05-25 19:04:58