下面的代码是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');
});
});
}
});
});
其中访问是我用于标题中菜单项的div ID。
下面的代码是header.php页面代码
<div id="access" >
<ul>
<?php wp_list_pages('depth=1&title_li=');?>
</ul>
</div>
我想要的是点击菜单项应该调用javascript函数..
如何从php文件中调用函数?
答案 0 :(得分:1)
您不从PHP调用JavaScript函数。 PHP只允许您动态构建HTML页面。页面准备就绪后,将调用JavaScript并开始将事件绑定到相应的元素。
您需要做的是使用'view source'或firebug查看生成的代码,并探索生成的HTML的结构,然后您可以将事件绑定到请求的元素。