示例:
html代码:
<tr> <input type="hidden" value="{$vo.id}"> <input type="hidden" value="{$vo.menu_id}"> <td style="line-height:100px;">{$i}</td> <td><img src="__ROOT__/{$vo.pic_url}{$vo.pic_name}" style ="height:100px;width:450px"></td> <td style="line-height:100px;">{$vo.menu_name}</td> <td style="line-height:100px;"> <a id="preview" href="javascript:void(0)">预览</a> <a href="__URL__/pic_main_edit?id={$vo.id}" style="margin-left:10px">编辑</a> </td> </tr>
js代码:
$('#preview').live('click',function(){ var menu_id = $(this).closest('tr').children('input').eq(1).val(); confirm(menu_id); }
点击后menu_id无法获取
解决办法:
一:
<a id="preview" mid="{$vo.menu_id}" href="javascript:void(0)">预 览</a> $('#preview').live('click',function(){ var menu_id = $(this).attr('mid'); }
更多精彩内容:http://www.bianceng.cnhttp://www.bianceng.cn/web/Skills/
二:
<td style="line-height:100px;"> <input type="hidden" value="{$vo.menu_id}"> {$i} </td> $('#preview').live('click',function(){ var menu_id = $(this).closest('tr').children ('td').eq(0).children('input').val(); confirm(menu_id); }
<pre code_snippet_id="83063" snippet_file_name="blog_20131126_3_908110" name="code" class="html"><pre code_snippet_id="83063" snippet_file_name="blog_20131126_3_908110"></pre> <pre></pre> <pre></pre> <pre></pre> <pre></pre> <pre></pre> </pre>
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索input
, function
, click
, live
, IE Intranet confirm
, Preview
children
360浏览器 hidden js、input hidden、input type hidden、input hidden属性、input hidden 赋值,以便于您获取更多的相关知识。
时间: 2024-10-26 03:31:04