使用 mootools 从一页中的两种不同形式选择输入值

发布于 2024-11-28 00:08:45 字数 1078 浏览 1 评论 0原文

我在一页中有两种具有不同值的表单。

我想使用 mootools 代码获取用户单击提交按钮的表单的输入值。

Mootools 代码大多数适用于两种形式,同样:

 <form class="cart_form" >  
            <input type="hidden" name="order_code" value="KWL-hgy" />
            <input type="hidden" name="price" value="40000" />
            <input type="hidden" name="name" value="modeling" />    
            <label>KWL-hgy: <input class="center" type="text" name="qty" value="2" size="3" ></label>  
            <input type="submit" name="submit" value="Add to cart" />  
        </form>

 <form class="cart_form" >  
            <input type="hidden" name="order_code" value="KWL-JFE" />
            <input type="hidden" name="price" value="12000" />
            <input type="hidden" name="name" value="php" />    
            <label>KWL-JFE: <input class="center" type="text" name="qty" value="1" size="3" ></label>  
            <input type="submit" name="submit" value="Add to cart" />  
        </form>

I have two forms with different values in one page.

I want get input value of the form that user clicks on it's submit button, using mootools code.

Mootools code most work for two forms, as same:

 <form class="cart_form" >  
            <input type="hidden" name="order_code" value="KWL-hgy" />
            <input type="hidden" name="price" value="40000" />
            <input type="hidden" name="name" value="modeling" />    
            <label>KWL-hgy: <input class="center" type="text" name="qty" value="2" size="3" ></label>  
            <input type="submit" name="submit" value="Add to cart" />  
        </form>

 <form class="cart_form" >  
            <input type="hidden" name="order_code" value="KWL-JFE" />
            <input type="hidden" name="price" value="12000" />
            <input type="hidden" name="name" value="php" />    
            <label>KWL-JFE: <input class="center" type="text" name="qty" value="1" size="3" ></label>  
            <input type="submit" name="submit" value="Add to cart" />  
        </form>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如痴如狂 2024-12-05 00:08:45

你可以这样做:

$('form.cart_form').addEvent('submit', function(e){
    this.getChildren().each(function(el){
        alert(el.get('name') + ': ' + el.get('value'));
    });
});

一旦提交了带有类chart_form的表单并循环遍历该表单的所有子表单,就会触发一个事件。

you could do it somehow like this:

$('form.cart_form').addEvent('submit', function(e){
    this.getChildren().each(function(el){
        alert(el.get('name') + ': ' + el.get('value'));
    });
});

this will fire an event as soon as a form with the class chart_form is submited and loop through all the form's children.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文