Questions tagged «tablerow»

10
如何在表格单元格中显示多行文字
我想显示一个从数据库到表单元格的段落。 结果是一个大的1行,而忽略了它在数据库中的组织方式。例如忽略“输入”(换行) 我想完全按照它在数据库中的编写方式来显示它。 例如,如果段落保存如下: hello , my name is x. 我希望它完全像这样显示,而不是: hello, myname is x.
119 html  css  tablerow 

2
jQuery:为选定的单选按钮获取父tr
我有以下HTML: <table id="MwDataList" class="data" width="100%" cellspacing="10px"> .... <td class="centerText" style="height: 56px;"> <input id="selectRadioButton" type="radio" name="selectRadioGroup"> </td> .... </table> 换句话说,我的表只有几行,最后一个单元格的每一行都有一个单选按钮。 如何获得所选单选按钮的父行? 我试过的 function getSelectedRowGuid() { var row = $("#MwDataList > input:radio[@name=selectRadioGroup]:checked :parent tr"); var guid = GetRowGuid(row); return guid; } 但似乎此选择器不正确。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.