以下代碼是多餘的---同一個匿名函數出現三次。在Javascript中,我如何重構一些重複的匿名函數?
我該如何重構它?
$(".operation").resizable({
create: function(event, ui) {
var width = $(".operation").width()
$("#width span.text").text(width)
},
resize: function(event, ui) {
var width = $(".operation").width()
$("#width span.text").text(width)
},
stop: function(event, ui) {
var width = $(".operation").width()
$("#width span.text").text(width)
},
})
+1,但假設他已經閉合/函數內部運行,多餘的關閉是沒有必要的。 – 2011-03-18 01:22:17