原文:http://fineui.com/bbs/forum.php?mod=viewthread&tid=7019&page=1#pid31469
代码如下:
<script src="../res/js/jquery.min.js"></script>
<script>
$(function() {
var url = '<%=string.IsNullOrEmpty(Request["url"])?"":Request["url"]%>';
//alert("1");
if (url.length > 0) {
//alert(url);
window.open("http://"+url);
}
parent.removeActiveTab();
});
<script>
$(function() {
var url = '<%=string.IsNullOrEmpty(Request["url"])?"":Request["url"]%>';
//alert("1");
if (url.length > 0) {
//alert(url);
window.open("http://"+url);
}
parent.removeActiveTab();
});
</script>
同理 打开多个同一个tab也可以,添加tab可以参考官网例子:http://fineui.com/demo/#/demo/other/addtab.aspx