有人可以解释这段代码吗?
<script type="text/javascript"><!--
$('#button-confirm').bind('click', function() {
$.ajax({
type: 'get',
url: 'index.php?route=hybrid_directory/confirm',
success: function() {
location = '<?php echo $continue; ?>';
}
});
});
function formSubmit()
{
document.getElementById("freecontactform").submit();
}
//--></script>
按钮确认,当点击从 php 联系表单提交信息时。url 和 function - location 是如何使用的?