0

我有这个代码,它很简单,但为什么它不起作用?

<html>
    <head>
        <script type=”text/javascript“&gt;
            function Expedisi() 
            {
                var x=document.getElementById("cmb");//this the script for get data combo box
                var y = document.getElementById("txt");
                getCmb = x.value; 
                y.value = getCmb;
                alert(x);
            }
    </head>  
    <body>
        <select name="JENIS" id="cmb" data-role="slider" onChange="Expedisi()">
            <option value="Suplier">Sup</option>
            <option value="Expedisi">Exp</option>//if i pick one of this                          the value will be input on text box
        </select> 

        <input type="text" name="BKIRIM" id="txt" value=""> //this the destination value
    </body>
</html> 

谁能帮我?因为这个脚本没有运行?

谢谢

4

3 回答 3

1

你的代码对我有用。在这里试试。http://jsfiddle.net/DLs7j/ 这与您的代码完全相同。复制,粘贴。

最好的

于 2012-07-24T01:57:03.017 回答
1

您不需要 getCmb,也不需要声明额外的元素。

改用这个:

<html>
      <head>
          <script type="text/javascript">
             function Expedisi(t) 
             {
                var y=document.getElementById("txt");
                y.value = t.value;
              }
        </script>
      </head>  
   <body>

   <select name="JENIS" id="cmb" data-role="slider" onChange="Expedisi(this);">
                          <option value="Suplier">Sup</option>
                          <option value="Expedisi">Exp</option>
    </select> 

     <input type="text" name="BKIRIM" id="txt" value=""/>
    </body>
    </html> 
于 2012-07-24T01:57:40.837 回答
1

您需要更改脚本类型标记周围的引号。您当前使用的是“”而不是“”;所以将“text/javascript”更改为“text/javascript”。

于 2012-07-24T02:20:22.600 回答