在 index.php 的底部,我有这段代码,它可以工作:
<script type='text/javascript'>
$("#tbAlegro").click(function() {
window.location = 'alegro.php';
});
</script>
在 alegro.php 的底部,我有相同的代码,但它不起作用:
<script type='text/javascript'>
$("#logoCh").click(function() {
window.location = 'index.php';
});
</script>