Maison >interface Web >js tutoriel >JS 实现获取打开一个界面中输入的值_javascript技巧

JS 实现获取打开一个界面中输入的值_javascript技巧

WBOY
WBOYoriginal
2016-05-16 17:40:061101parcourir

需求
在一个界面中打开另一个界面,通过JS获取在另一个界面中用户输入的值。
示例:
Index.html

复制代码 代码如下:

  

  

    

        

涓婚〉

       

            function EntryPoint() {

                var style = 'dialogHeight:600px;dialogWidth:800px;status:no;help:0;scrool:yes';

                var a = window.showModalDialog('other.html', '', style);

      

               if (a == undefined) {

                   a = window.returnValue;

               }

              // debugger;

               if (a != null && a.length > 0) {

                   document.getElementById("name").value = a[0];

                   document.getElementById("age").value = a[1];

               }

           }

   

   

   

   

   

   

   

     


鍙︿竴涓

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn