我是 jQuery 的新手。我有一个具有唯一 ID 的动态生成的行。我需要对每一行应用一个 jQuery 函数。
我的 jQuery 函数在页面加载后立即启动,而不是等待我点击。
<script type="text/javascript">
$(function popup() {
$(this).hover(function() {
$('div#pop-up').show();
}, function() {
$('div#pop-up').hide();
});
});
</script>
我希望 jQuery popup() 函数在我单击“tr”行时执行它的操作,并且只影响该特定行。
<tr id="abc" onclick="popup()">
<td>blah</td>
</tr>
<tr id="def" onclick="popup()">
<td>blah</td>
</tr>
<tr id="ghi" onclick="popup()">
<td>blah</td>
</tr>