我有以下脚本:
jQuery('#content-page-<?php echo $post->ID ?>') .data('content','<div class="page-content"><?php echo $post->post_content; ?>');
在
'<div class="page-
这
'
符号理解不正确,我得到了
Uncaught SyntaxError: Unexpected token ILLEGAL
和
未终止的字符串文字
chrome和firefox中的错误。
问题是什么?
更新 1
这
<?php echo $post->post_content; ?>
如何处理多行文本?问题似乎在多行中。