元素:
<input type='text' id='Customer.name' value='' />
无效的jQuery选择器:
$('#Customer.name')
有人知道这个元素应该是什么选择器?
解决方法
$('input[id="Customer.name"]')
<input type='text' id='Customer.name' value='' />
无效的jQuery选择器:
$('#Customer.name')
有人知道这个元素应该是什么选择器?
$('input[id="Customer.name"]')