0
我想激活功能,點擊一個按鈕與id =「add_city」 爲現在它激活被按下時,輸入..我想激活功能,點擊一個按鈕與id =「add_city」截至目前它按下輸入時激活
function createCity(stateId, newCity, event) {
if(event.keyCode == 13){
if (newCity.trim().length) {
$.ajax({
type:'POST',
url:'ajaxData.php',
data:{'id': id,
'country_id': $("#country").val(),
'state_id': stateId,
'city': newCity},
success:function(html){
$('head').append(html);
$('#state').change();
}
});
}
}
}