$,是指prototype定义的一类方法

$("id")  得到的是页面id为"id"的元素
$F("id") 得到的是页面id为"id"的元素的值,这是只读的,不可写

1. var str = window.showModalDialog(url, window, "dialogHeight: " + h + "; dialogWidth: " + w + ";

                                                       dialogTop: 200px; dialogLeft: 250px; edge: Raised; center: Yes;

                                                       help: Yes; resizable: Yes; status: no;scroll:no");
          
            if (str != 'no' && str != null)

           {
                var strs=str.split("+");
              
                document.all.<%=txtCUSTOMERSNO.ClientID%>.value=strs[0];
                document.all.<%=txtCUSTOMERSNAME.ClientID%>.value=strs[1];;
               
                $("#<%=txtCUSTOMERSLEVEL.ClientID%>").val(strs[2]);
               
               
                document.all.<%=txtCUSTOMERSADDRESS.ClientID%>.value=strs[3];;
            }

2. window.returnValue=var1;

     window.Close();

 

相关文章:

  • 2021-11-03
  • 2021-06-05
  • 2022-01-05
  • 2021-06-19
  • 2022-01-12
  • 2021-05-15
  • 2022-02-11
  • 2021-12-15
猜你喜欢
  • 2021-07-26
  • 2021-10-14
  • 2022-02-04
  • 2022-12-23
  • 2021-08-05
  • 2022-02-23
相关资源
相似解决方案