我试图将 php.js 与我的脚本一起使用,但它没有工作,所以我解决了一个函数并加载到一个页面上,除了 jquery 和 php.js 什么都没有,但它仍然没有工作
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="./pathinfo_function.js"></script><script>
$(document).ready(function() {
$(".do").click(function() {
alert(pathinfo('/www/htdocs/index.html', 'PATHINFO_EXTENSION'));
});
});
</script>
<a href='#' class='do'>Pathinfo</a>
都坏了,谁能指出我做错了什么