问题:
按 Enter 不会提交<form>
。 <input>
与 Google Places API 相关联,如果是<input>
字段,则提交可以使用。
HTML:
<form>
<input type="text" name="query" id="geocode_query" />
<!-- Working without id attribute:
<input type="text" name="query" />
-->
<input type="submit" value="Submit" />
</form>
Backbone(事件:"geocode:result #geocode_query": "doSomething"
):
setLocation: (event, result) ->
@location = result
看错了什么?非常感谢!