将隐藏变量值设置为等于表的整个 HTML
我正在尝试将动态表的整个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将
html()
移至val()
函数内:Move your
html()
inside theval()
function:看看你的括号。
您对
val()
的结果调用.html()
,而不是它的参数。look at your parentheses.
You calling
.html()
on the result ofval()
, not its argument.如果您想获取整个表格的 HTML,那么您需要将其包装在另一个元素中,以便能够使用
.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: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()
.