我有一个基于输入数据创建字段的表单。当用户填写#invId时,我需要创建下一个字段#invIdDate,然后专注于此。
我已经尝试过了:
$(document).on('blur','#invId',function(){
$('#invDateField').html("<input type='text' id='invDate' name='invDate' placeholder='Invoice Date'>");
setTimeout(function(){
$('#invDate').focus();
}, 50);
});
也尝试过:
$('body').on('blur','#invId',function(){
$('#invDateField').html("<input type='text' id='invDate' name='invDate' placeholder='Invoice Date'>");
$('#invDate').focus();
});
// note: #invDatefield is the id of a cell in table.
结果是当我取消#invId时,我转到chrome url字段。
答案 0 :(得分:0)
我在附加输入时遇到问题,请尝试在附加输入后找到它:
ALTER KEYSPACE keyspace_name
WITH REPLICATION = {'class' : 'NetworkTopologyStrategy', 'datacenter_name' : 1};