在js varibale中插入包含php标记的html代码

时间:2018-01-16 10:22:40

标签: javascript php html

我在 main_business.php

中有一个HTML逻辑
<div class="large reveal full-size" id="business-modal" data-reveal>
    <?php
        $model = new Form('my-form');
        echo $this->renderPartial('//my/business', array('model'=>$model)); 
    ?>
</div>

我还有另一个文件 script.js 包含函数open

function open() {
  var $model;
} 

现在我想将main_business.php的内容插入此$modal变量。

我该怎么做?

2 个答案:

答案 0 :(得分:0)

function open() {
    var modal = $('#business-modal').html();
    console.log(modal);
}

答案 1 :(得分:0)

您需要在javascript中创建新变量

function open() {
    var model= '<?php $model ?>';
}