0

データベースからデータを取得し、ドロップダウン メニューのコードである html コードを返す php 関数があります。私がする必要があるのは、jQuery を使用して、このドロップダウン メニューを div に追加することです。私が抱えている問題は、php からの戻り値を jQuery 変数に割り当てる方法です。

function returnUserNames(){
//open connection to the database

return 'this an html code that should be returned by this function';

}

以下を試してみましたが、うまくいきません。

<script>
var menu = <?php echo returnUserNames() ?>;
$('#show_menu').append(menu);
</script>

ありがとう

4

2 に答える 2