Jquery将ID从<img/>传递给函数

时间:2016-06-01 08:03:12

标签: jquery html

我试图在函数中传递id。不知道怎么做......:/

    $(function Myfunction(this) {
        $(this.id).udraggable({
            grid: [ 15, 15 ]
        });
    });


<img onclick="Myfunction(this)" src="files/pic/Website.png" id="Website">

1 个答案:

答案 0 :(得分:2)

1)传递this.id

<img onclick="Myfunction(this.id)" src="files/pic/Website.png" id="Website">

2)功能中的访问ID

function Myfunction(id) {
  $("#"+id).udraggable({
      grid: [ 15, 15 ]
  });
}