<script type="text/javascript">
$('.nav.lessons>li').click(function () {
$id=$(this).closest('ul').attr('id');
window.open( $id+"/" + this.id + ".php");
})
</script>
此代码将从我的chapter1 / lesson1.php中打开一个php文件,依此类推
我从互联网上获得了代码 我只是想知道如何改变window.open( $id+"/" + this.id + ".php");
因为我想在路径student / chapter1 / lesson1.php
上打开它答案 0 :(得分:0)
这只是一个字符串连接问题 - 您可以添加&#34;学生&#34;在字符串的开头:
window.open("student/" + $id + "/" + this.id + ".php");
答案 1 :(得分:0)
只需使用window.open("student/" + $id + "/" + this.id + ".php");