1
我是Coffeescript的新手,並在語法上掙扎。任何人都可以幫助我如何在CS中編寫以下內容?我認爲下面的工作,但我收到錯誤調用函數和返回false(所以我不遵循鏈接)。Coffeescript函數語法
$('#getLocation').click ->
$('#location-loading').show()
navigator.geolocation.getCurrentPosition(applyLocation)
false
applyLocation = (location) ->
$('#LogLongitude').val(location.coords.longitude)
$('#LogLatitude').val(location.coords.latitude)
alert('Latitude:' + location.coords.latitude + ', Longitude: ' + location.coords.longitude + ', Accuracy: ' + location.coords.accuracy)
$('#location-loading').hide()
使用js2coffee.org獲取更多幫助。 –
事實證明,代碼工作正常,但我忘了在文件開頭加入「jQuery - >」,因爲我使用的是jQuery,而且由於複製/粘貼問題,我有幾個選項卡而不是空格。 – Ryan