我想在thickbox中显示从我的classes方法检索到的内容。我该怎么做?我一直在为我想要的超链接添加正确的id,但所有的管理正文都在thickbox中进行解析。
<a href="?page=blahblah&TB_iframe=true&width=600&height=550" class="thickbox">Click</a>
class myAdmin {
public function __construct() {
}
public function myfunction() {
echo \'<div class="css_class">The content of my thickbox</div>\';
}
}