我用到了jquery liger ui的框架   发送每次    alert($("#send").val()); 都弹出为空;我的代码:   function f_open1() {
            $.ligerWindow.show({ target: $("#target1").clone(), width: 400, height: 240, title: title() });        }
   
function submit(){

  alert($("#send").val());
    alert("dddd");
}

    </script>
</head>
<body style="padding: 10px;   overflow:hidden;">
    <div id="target1" style="width: 200px; margin: 3px; display: none;">
        <h3>
            提示文本标题</h3>
        <div>
            这里是目标容器的内容,执行open({target:$("#target1")});<br />
            以后将把这段内容以ligerDialog的方式加载并显示<br/>
 <textarea rows="3" cols="20"  id="send"></textarea>
          <input type="button" onclick="submit()" value="发送" />  
        </div>
    </div>
    <div class="l-case-title">
        实例一
    </div>
    <input type="button" onclick="f_open1()" value="open window" />  真的很着急 希望高手能解决下;