Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个花式框,我想显示一个在其父页面上输入的值,但它返回未定义......有什么想法可以让它工作吗?
$(this).parent().find('input[id="your_name"]').val();
提前致谢。
你的问题不够清楚,我想我明白你的意思了,
$('#various').click(function(){ var txt=$('#myNameInput').val(); $.fancybox({ 'titlePosition' : 'inside', 'transitionIn' : 'none', 'content' : txt, 'transitionOut' : 'none', }); return false; });
检查小提琴。
http://jsfiddle.net/agentmilindu/QjcXA/1/