0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

JavaScript変数にHTMLコードを格納する方法

Last updated at Posted at 2023-06-22

JavaScript変数にHTMLコードを格納したかったのですが、PHPコードが含まれているとシングルクォーテーション("")で囲う方法ではできなかったので、PHPコードが含まれている場合の方法を調べました。

バッククオート(`)を使ってテンプレートリテラルを作成することで、変数にHTMLコードを格納できます。
CakePHPの場合、ビューファイル上であれば、$this->Form->buttonの部分も問題なく動作しました。

var template = `
            <div>
                    <?=
                        $this->Form->button(
                            '追加',
                            [
                                'type' => 'button',
                                'class' => 'btn',
                                'id' => 'add',
                            ]
                        );
                    ?>
               </div>
            `;

使用例

$('#test').append(template);
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?