我在使用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?