Ruby on Rails - 将输入字段的值传递给

发布于 2024-10-31 14:20:00 字数 606 浏览 2 评论 0原文

嗨,我被困在这里很糟糕。实际上,senario 非常简单,我有一个像这样的输入字段:

 %input.coupon_bar{:type => "text", :name=> "coupon", id=>"coupon_id"}/

我想将该框中的任何值传递给不同的控制器,我试图这样做:

= link_to image_tag("ok_button.png", :border =>0), "/orders/new/", :coupon = #{$('.coupon_bar').val()}

我认为使用 jquery < 会很简单code>$('.coupon_bar').val() 但我想它并不像我想象的那么简单......请帮忙???

哦,与 这个 StackOverFlow 不同问题,我的输入字段不属于任何表单...

提前致谢...

Hi I am stuck here pretty bad. The senario is quite simple actually, I have an input field like this:

 %input.coupon_bar{:type => "text", :name=> "coupon", id=>"coupon_id"}/

And I want to pass whatever value is in that box to a different controller, I am trying to do it like this:

= link_to image_tag("ok_button.png", :border =>0), "/orders/new/", :coupon = #{$('.coupon_bar').val()}

I thought it would be simple using the jquery $('.coupon_bar').val() but I guess its not as simple as I thought... any help please????

Oh, and unlike This StackOverFlow Question, my input field is not part of any form...

Thanks in advance...

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

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

发布评论

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

评论(2

删除会话 2024-11-07 14:20:00

我发现有两个不好的做法:

  1. 不要对链接进行硬编码

  2. 尽可能避免干扰性 js

是我的建议:

= link_to image_tag("ok_button.png", :border =>0), new_order_path, :id => "my_link"

以下 在你的js中:

<script type="text/javascript" charset="utf-8">

$().ready(function(){
    $('#my_link').click(function(){
        $(this).attr('href', $(this).attr('href') + '?coupon=' + $('.coupon_bar').val());
    });
});

</script>

I see there two bad practices:

  1. Don't hardcode your links

  2. Avoid obstrusive js when possible

Here is what I suggest:

= link_to image_tag("ok_button.png", :border =>0), new_order_path, :id => "my_link"

And in your js:

<script type="text/javascript" charset="utf-8">

$().ready(function(){
    $('#my_link').click(function(){
        $(this).attr('href', $(this).attr('href') + '?coupon=' + $('.coupon_bar').val());
    });
});

</script>
故人爱我别走 2024-11-07 14:20:00

为什么不直接把它写成表格呢?那会容易得多。

无论如何,您可以使用链接中的 onclick 来实现您的目标:

<a href="#" onclick="window.location.href = '/orders/new/coupon='+ $('.coupon_bar').val();">
Text</a>

Why don't you just put it in a form? That would be much easier.

Anyway, you can use the onclick from the link to achieve your goal:

<a href="#" onclick="window.location.href = '/orders/new/coupon='+ $('.coupon_bar').val();">
Text</a>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文