将隐藏变量值设置为等于表的整个 HTML

发布于 2025-01-02 16:05:57 字数 309 浏览 1 评论 0原文

我正在尝试将动态表的整个 HTML 发布到另一个页面,该页面会将 HTML 解析为 XLS 文件。不过,我似乎无法正确获取 onClick jQuery,因为生成的 .XLS 文件仅包含一个单元格,内容为:[object Object]

onsubmit='$j("#datatodisplay").val( $j("#table1") ).html()'

datatodisplay 是隐藏变量的名称/id,

table1 是表名称。

I'm trying to POST the entire HTML for a dynamic table to another page which will parse the HTML as an XLS file. I can't seem to get the onClick jQuery correct though, as the generated .XLS file just has contains one cell that reads : [object Object].

onsubmit='$j("#datatodisplay").val( $j("#table1") ).html()'

datatodisplay is the name/id of the hidden variable,

table1 is the table name.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

爱已欠费 2025-01-09 16:05:57

html() 移至 val() 函数内:

onsubmit='$j("#datatodisplay").val( $j("#table1").html())'

Move your html() inside the val() function:

onsubmit='$j("#datatodisplay").val( $j("#table1").html())'
吻安 2025-01-09 16:05:57

看看你的括号。

您对 val() 的结果调用 .html(),而不是它的参数。

look at your parentheses.

You calling .html() on the result of val(), not its argument.

迷你仙 2025-01-09 16:05:57

如果您想获取整个表格的 HTML,那么您需要将其包装在另一个元素中,以便能够使用 .html() 函数获取开始和结束

标签:

$('form').on('submit', function () {
    var $table = $('#table1').wrap('<div />'),
        html   = $table.parent().html();

    $table.unwrap('<div />');

    $('#datatodisplay').val(html);
});

这是一个演示:http://jsfiddle.net/JGnh9/

注意.on() 是 jQuery 1.7 中的新功能,在本例中与使用 .bind() 相同。

If you want to get the whole table's HTML then you will need to wrap it in another element to be able to use the .html() function to get the opening and closing <table></table> tags:

$('form').on('submit', function () {
    var $table = $('#table1').wrap('<div />'),
        html   = $table.parent().html();

    $table.unwrap('<div />');

    $('#datatodisplay').val(html);
});

Here is a demo: http://jsfiddle.net/JGnh9/

Note that .on() is new in jQuery 1.7 and in this case is the same as using .bind().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文