我试图在javascript函数中检索页面内容。当我回显测试变量$htmlblock
时,javascript灯箱工作正常。但当我回显$contactinfo
时,它会在新标签页中打开页面。
<?php
// retireve content from "contact" page
$contactpageid=85;
$contactpage = get_page($contactpageid);
$contactinfo = apply_filters('the_content', $contactpage->post_content);
//test variable
$htmlblock = '<strong>Contact Information</strong><br/><table><tr><td id="name"><strong>NAME</strong></td><td id="phone"><a href="tel:+18888888888">888-8888</a></td><td id="email"><a href="mailto:name@email.com" target="_blank">name@email.com</a></td></tr></table>';
?>
<script language="javascript" type="text/javascript">
function openLightbox() {
lightbox('<?php echo $contactinfo; ?>');
}
</script>
答案 0 :(得分:0)
$contactinfo
可能包含HTML标记,其中$htmlblock
只是一个简单的字符串。
我不确定你能用Lightbox做到这一点。您可能需要查看Lightbox文档(您正在使用的版本)如何插入HTML内容。
或者,您可以尝试剥离HTML。
$contactinfo = apply_filters('the_content', strip_tags($contactpage->post_content));