I have table in which when the points are dragged , the corresponding value in table gets updated.

But i have done it using switch statement and is getting quite complex.

Is there a way i can achieve same using simple jquery/Javascript code.

Here is FIDDLE DEMO

有帮助吗?

解决方案

I suppose you can have a function like this:

function updater(yv,xv){
   var num = xv.match(/^\d+/);
   $('#b'+num).html(yv);
}

Demo

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top