1

基本上,我只想要一个链接到我网站上不同页面的按钮,但我想保留来自 datatables.net 的 TableTools 按钮的当前 CSS 和样式,我不想在 CSS 中鬼混以模仿某些东西是我使用 TableTools 完成的内置方式。

我的班级名称是“basic-modal”,我尝试使用 html 格式链接并为此代码打开新窗口模式,

 <a href="#" class="basic-modal">Modal Two</a></li>

问题是当我想在数据表按钮中添加链接时。这是我的代码

 "aButtons": [   
               {
                 "sExtends": "ajax",
                 "sButtonText": "Add SKOM ",
                 "fnClick": function ( nButton, oConfig, oFlash )
                  {
                    window.open('jex5.htm','mywindow','width=400,height=200,left=0,top=100,screenX=0,screenY=100');
                  }
               } 
             ]

它不会加载 css 类,因为我正在使用 window.open 加载新窗口。在新窗口链接中插入我的css类有什么建议和解决方案吗?

4

0 回答 0