这是我的网址。
localhost/baithe-Baithe-new/beta/venue-detail.html
我想要这个
localhost/baithe-Baithe-new/beta/venue-detail.html/Videos
当我点击视频标签时。同样如果我点击功能标签,那么网址应该是这样的
localhost/baithe-Baithe-new/beta/venue-detail.html/Featurs
有人帮我吗?我想用Jquery实现这个目的。
答案 0 :(得分:-1)
单击视频按钮
时,可以使用此脚本更改网址<script>
// onclick event is assigned to the #button element.
document.getElementById("button").onclick = function() {
window.location.href = "localhost/baithe-Baithe-new/beta/venue-detail.html/Videos ";
};
</script>