Jquery EasyUi Tab Iframe

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PriceInfo.aspx.cs" Inherits="IMISPortalXiaWu.UI.Price.PriceInfo" %>



<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head runat="server">

    <!--#include file="http://www.cnblogs.com/UserControl/jquery.easyui.abs.js.htm"-->

    <title></title>

    <script>

        $(function () {

            $('#tt').tabs({

                tools: [

//                {

//                    iconCls: 'icon-add',

//                    handler: function () {

//                        alert('add');

//                    }

//                }, {

//                    iconCls: 'icon-save',

//                    handler: function () {

//                        alert('save');

//                    }

//                }

                ]

            });

        });

         

    </script>

</head>

<body> 

        <div id="tt" style="width:750px; height:600px;overflow:hidden">

            <div title="价格行情" style="overflow:hidden">

             <iframe  frameborder="0" src="PriceInfoTab1.aspx" style="width: 100%;

                    height: 100%;"></iframe>

            </div>

            <div title="价格走势图" style="overflow:hidden;">

                <iframe   frameborder="0"  src="PriceInfoTab2.aspx" style="width: 100%;

                    height:100%;"></iframe>

            </div>   

        </div>

     

</body>

</html>

  

你可能感兴趣的:(jquery easyui)