Bootstrap 3 - 使用 "Refresh" Glyphicon 重置文本输入字段

Bootstrap 3 - Use "Refresh" Glyphicon to Reset Text Input Field

如何通过单击 Bootstrap 3 中的 "refresh" 字形图标来重置输入字段?

现有HTML:

<input type="email" placeholder="person@company.com" /><span class="fa fa-refresh"></span>
$('.fa.fa-refresh').click(function(){
 $(this).prev().val('');
});