我试图在函数中传递id。不知道怎么做......:/
$(function Myfunction(this) {
$(this.id).udraggable({
grid: [ 15, 15 ]
});
});
<img onclick="Myfunction(this)" src="files/pic/Website.png" id="Website">
答案 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 ]
});
}