2009-03-02 45 views
0

如何將this slider的值提交給CGI應用程序(就像您將複選框一樣)? 不確定滑塊的輸入標籤是否搞亂了某些東西?使用Slider作爲輸入提交HTML表單(WebFX)

<div class="slider" id="slider-1" tabIndex="1"> 
    <input class="slider-input" id="slider-input-1" 
     name="slider-input-1"/> 
</div> 
+0

覺得我越來越近。創建一個按鈕,並通過單擊事件傳遞值> – 2009-03-02 20:15:00

回答

0

確定了它:

  <form action="/cgi-bin/Lib.exe" method=POST name="slider" ID="Form2"> 
        <input type="hidden" name="user" value="" ID="Text1"> 
      </form> 

<input type="button" value="Delete" class="btn" onclick="setval()" onmouseover="hov(this, 'btn btnhov')" onmouseout="hov(this, 'btn')" ID="Button1" NAME="Button1"/> 

function setval() 
{ 
    //alert(s.getValue()); 
    document.slider.user.value = s.getValue();//set value of hidden text box to value of slider 
    document.slider.submit(); 
} 
1

如果我是你,我會嘗試調整的<input>標籤的type屬性,將其設置爲texthidden

(我不知道有足夠的瞭解你正在使用肯定地說框架/環境)。