• 用jQuery向div中添加Html文本内容


    前台代码:

    <link href="http://www.cnblogs.com/Content/themes/base/jquery-ui.css" rel="stylesheet" type="text/css" />
    <script src="http://www.cnblogs.com/Scripts/jquery-1.4.4.min.js" type="text/javascript"></script>
    <script src="http://www.cnblogs.com/Scripts/jquery-ui.js" type="text/javascript"></script>
    复制代码
        function PoeviewExcel() {
    $.ajax(
    {
    url: "send/index",
    type: "post",
    success: function (data) {
    var divshow = $("#showInfo2");
    divshow.text("");// 清空数据
    divshow.append(data); // 添加Html内容,不能用Text 或 Val
    divshow.dialog({
    title: "短信群发系统",
    height: 250,
    580
    });

    }
    }
    );
    return false;
    }
    复制代码
    <a href="#" onclick="return PoeviewExcel()">预览数据</a>
    <div id="divPreview" style="display: none">
    <text id="showInfo2"></text>
    </div>


    后台(主要):

    复制代码
            public string GetImportReport()
    {
    DataTable dt = this.ImportExcel();
    string content = String.Empty;
    content = @"<table width='550' border='0' cellspacing='0' cellpadding='0' bgcolor='#D2D2D2'>"
    + " <tr bgcolor='#336699'>"
    + " <td align='center'><strong>序号</strong></td>"
    + " <td align='center'><strong>目标手机号</strong></td>"
    + " <td align='center'><strong>发送内容</strong></td>"
    +"</tr>";
    for (int i = 0; i < dt.Rows.Count; i++)
    {
    content += "<tr>"
    + " <td width='50' align='center'>" + i.ToString()+"</td>"
    + " <td width='150' align='center'>" + dt.Rows[i][0].ToString() + "</td>"
    + " <td width='150' >" + dt.Rows[i][1].ToString() + "</td>"
    + " </tr>";
    }
    content += "</table>";
    return content;
    }
    复制代码

    说明:

    divshow.append(data); // 添加Html内容,不能用Text 或 Val

    当然用 after();会在该div中不断追加信息。

    如果用Text:显示加载的文本内容;

    如果用Val:点击链接第一次为空窗口,再点击才出现数据显示

  • 相关阅读:
    CSS3(4)---动画(animation)
    MDT 2010驱动管理新方法。
    windows 2012 试用180天
    Mac地址绑定的wifi
    用于主题检测的临时日志(b2d5c7b3-e3f6-4b0f-bfa4-a08e923eda9b
    samba4.1.9安装
    samba权限之easy举例说明--原创
    NFS性能优化
    工作组环境下管理windows.
    管理windows防火墙
  • 原文地址:https://www.cnblogs.com/kenshinobiy/p/5011630.html
Copyright © 2020-2023  润新知