• λ我爱Aspx >> Asp.Net >> asp有象VB的combo控件一样的可以手动修改内容的下拉框码?
  • asp有象VB的combo控件一样的可以手动修改内容的下拉框码?

  • :aspxer  Դ:csdn  :2007-7-6 2:50:07  ؼ:asp,com,vb
  • this.txtObj.focus();

    this.txtObj.select();

    this.comObj.selectedIndex=-1;

    }

    function getValue()

    { return this.txtObj.value; }

    function doSelectIdx(i)

    {

    var optLen = this.comObj.options.length;

    if ((i >=0) && (i < optLen))

    { this.comObj.selectedIndex = i;

    this.txtObj.value = this.comObj.options[i].text;

    return;

    }

    this.txtObj.value = "";

    }

    function focus()

    { this.txtObj.focus(); }

    /* resize all combobox when window be resized */

    function resetAllSize()

    {

    var i;

    for (i=0; i < theArray.length; i++)

    {

    theArray[i].doResize();

    }

    }

    第3楼. 由 hookee 于 2007-6-26 0:31:33 发表

    调用方法

    <HTML>

    <HEAD>

    <TITLE>compobox</TITLE>

    <META http-equiv=Content-Type content="text/html; charset=shift_JIS">

    Ҷƪл˵?
  • һƪ关于myeclipse和lomboz之间的问题
    һƪ在ant里能够调用一个bat文件吗