使用jQuery从类名调用函数

时间:2014-05-06 07:40:04

标签: javascript jquery css html-table

我有一个在tr上有类名Start_point的表。我想要一个方法,它应该逐个点击而不是按属性点击。

<tr class="Start_Point" style="background: none repeat scroll 0% 0% yellow;">
<td>
<input type="checkbox">
</td>
<td>4</td>
<td>MaxFort School, Parwana Road</td>
<td>28.69178</td>
<td>77.10968</td>
<td>09:34:29</td>
<td>Start</td>
<td>
<input type="button" value="Edit">
<input type="button" onclick="deleteRow(this.parentNode.parentNode.rowIndex)" value="Delete">
</td>
</tr>

6 个答案:

答案 0 :(得分:0)

尝试使用jquery

的类选择器
   $('.Start_Point').click(function(){


    });

答案 1 :(得分:0)

$(function(){
   $('.Start_Point').click(function(){
    // your code
   })
})

答案 2 :(得分:0)

试试这个

$(function(){
    $(".Start_Point").click(function(){ alert("Your function"); }
});

答案 3 :(得分:0)

$(function(){
$('.<className>').click(function(){
    alert("<Your enter code here>")
})
})

答案 4 :(得分:0)

如果你想处理后来获得Start_Point 的行,而不是最初没有它,你可以使用事件委托:

$("selector-for-the-table").on("click", ".Start_Point", function() {
    // ...
});

答案 5 :(得分:0)

我认为你问的是这个功能this link (JSFiddle)我开发了这个看看

$(document).ready(function(){
    $(".Start_Point").click(function(){
        console.log("called");
        alert("do want you want to do");
    });
 });