如何在4+版本的dhtmlxTabbar中访问选项卡的title属性(工具提示)。我曾经在版本3.6中这样做:
tabbar._tabs[nameTab].title
答案 0 :(得分:1)
这样:
<script type = "text/javascript" >
history.pushState(null, null, 'pagename');
window.addEventListener('popstate', function(event) {
history.pushState(null, null, 'pagename');
});
</script>