我在Edge中收到错误Syntax error, unrecognized expression: [name*="myControl" i]
错误,但该页面在Firefox和Chrome中正常运行。
导致错误的jQuery是
function resultSelected(targetControlName, value) {
$('[name*="' + targetControlName + '" i]').val(value);
}
调用该函数的元素是
<a onclick="resultSelected('myControl','12345')" href="javascript:void(0)">12345</a>
我正在使用jQuery 3.1.1