亚洲免费乱码视频,日韩 欧美 国产 动漫 一区,97在线观看免费视频播国产,中文字幕亚洲图片

      1. <legend id="ppnor"></legend>

      2. 
        
        <sup id="ppnor"><input id="ppnor"></input></sup>
        <s id="ppnor"></s>

        jquery獲得同源iframe內(nèi)body下標(biāo)簽的值的方法

        字號(hào):


            test.html
            html代碼
            ?123456789101112131415161718192021222324 <!doctype html> <html> <head> <meta http-equiv=content-type content=text/html; charset=utf-8 /> <title>jquery</title> <style type=text/css> </style> <script type=text/javascript src=> <script type=text/javascript> $(document).ready(function (){ $(#show).click(function (){ var iframeobj = $(window.frames[iframe_name].document); alert(iframeobj.find(#un).val()); }); }); </script> </head> <body> <input type=button id=show value=show /> <iframe id=iframe_id name=iframe_name src=> </body> </html>
            login.html
            html代碼
            ?1234567891011121314 <!doctype html> <html> <head> <meta http-equiv=content-type content=text/html; charset=utf-8> <title>登錄頁面</title> </head> <body> <form method=post action=#> 用戶名:<input id=un type=text name=username value=123d /> 密 碼:<input type=text name=password/> <input type=submit value=提交> </form> </body> </html>