在给定的 php 脚本中,我有以下内容:
<script>
function showMember() {
return $.ajax({ //Perform an asynchronous HTTP (Ajax) request.
type: 'get',
//A string containing the URL to which the request is sent.
url: '<?php echo $this->createUrl('member'); ?>',
...
如果我将它放在 php 文件中,这将有效。
但这似乎不是组织事物的好方法,我希望将所有这些代码放在单独的 .js 文件中。
处理这些情况的正确方法是什么?