我在 IE 和 Nightly 上运行下一个脚本没有任何问题。但是chrome由于某种原因不会运行它……有什么想法吗?
<script>
$(function() {
$('#date').datepicker({
dateFormat: 'yy-mm-dd',
autoSize: true,
onSelect: function (dateText, inst) {
$(this).parent('#frmDate').submit();
}
});
});
</script>
<form id="frmDate" action="php/price_qury.php" method="post" target="_blank" onSubmit='window.open("width=450,height=300,status=yes,resizable=yes,scrollbars=yes)'>
<input id="date" name="date" type="text" size="10">