当单击具有特定属性的特定后代时,我们如何调用特定函数?
我有 html :
<form>
<input type="text" />
<input type="submit" />
</form>
我该如何运行这样的东西:
$(document).ready(function(){
$('form').find('input').click(function(){
alert('');
});
});
只有在我们提交时才会调用该函数。