下面的代码是jquery函数
$(document).ready(function () {
$('#access').accordion({
create: function (event, ui) {
$('div#access> div').each(function () {
var id = $(this).attr('id');
$(this).load(id+'.html', function () {
$('#access').accordion('resize');
});
});
}
});
});
其中access是我用于标题中菜单项的 div id。
下面的代码是 header.php 页面代码
<div id="access" >
<ul>
<?php wp_list_pages('depth=1&title_li=');?>
</ul>
</div>
我想要的是菜单项的onclick应该调用javascript函数..
如何从php文件中调用函数?