通过表单发送锚标记值

时间:2017-02-14 20:07:02

标签: javascript jquery html ajax

是否可以通过表单发送锚标记值?

<a href=# id="link">Some Value</a>

我的应用程序/用途将用于Web表单,其中选项以ul li a格式列出,而不是select option格式。

是否有任何解决方法,没有使用select option格式?首选JSjQuery解决方案。

修改:我找到了this answer,但它涉及ajax。是否有可能使用纯JS / jQuery方法?

2 个答案:

答案 0 :(得分:1)

我认为您可以考虑使用stdObj

<input type="hidden">

答案 1 :(得分:1)

使用jQuery -

jQuery(document).ready(function($) {
    var current_url = window.location.href;
    var hidden_value = "<input type='hidden' name='url' value='"+current_url+"'>";
    $(YourFormSelector).append(hidden_value);
});