有没有办法将脚本php传递给jquery?

时间:2019-05-18 23:42:57

标签: javascript php jquery

我在使用dompdf库时发现脚本类型为text / php,我想尝试将text / php中的值传递给text / javascript。 所以我用type="text/php"

这样的代码
<script type="text/php">
        $myText = 'This is My text';
</script>

我想将值传递给jquery

<script type=text/javascript>
$('.tess').text($myText);
</script>

和我的html这样的<div class="tess"></div>,它应该返回"This is my text" 可以通过吗?

作为参考,请参阅此问题,dompdf使用脚本type = text / php,我想将其传递到jquery中,以便获得值How can I get the total number of pages in DOMPDF?

0 个答案:

没有答案