English 中文(简体)
选择使用jquery 的投入和案文领域
原标题:selecting inputs and textareas using jquery .submit function

我在一页上有多种形式。 我想能够单独地编辑和提交表格(将使用美元/美元的功能)。

j 质量对我来说仍然非常令人困惑,因为我以前对javascript没有了解。 我成功地利用这一工具建造了许多形式,使我的网站更容易使用,但我已经用目前的文字Im大楼进入围墙。

这就是我迄今为止所做的事情:

<script>
$(document).ready(function(){

    $(".savenpcf").submit(function(form) {
        var npcid = $(this).closest( form ).attr( id );
        var name = ;
        alert(npcid +" "+ name);
        return false;
    });

});
</script>

每个表格都有相同的类别(安全套)和不同的识别码。 我需要获得表格的复制件(已经达到这一目的),以及以这种形式提交材料和文字材料的价值。

我能够以最接近的职能获得形式,但我尝试了几种方法,使投入和文字领域的价值观没有任何作用。 在警示中,姓名始终不明确。 从表格中获取大约6项投入和2项案文的最佳方法是什么?

问题回答

不知道我是否读过你的问题。 你们试图以某种形式获得2个文本箱和文字材料?

为此:

<script>
$(document).ready(function(){

    $(".savenpcf").submit(function(form) {
        var $myForm = $(this).closest( form ); 
        var npcid = $myForm.attr( id );
        var textbox1 = $( input:eq(0) , $myForm).val();
        var textbox2 = $( input:eq(1) , $myForm).val();
        var textArea = $( textarea , $myForm).val();
        alert(npcid +" "+ textbox1 +" "+ textbox2 +" "+ textArea);
        return false;
    });

});
</script>




相关问题
Get element from selector given an index with jQuery

var items = $(".myClass"); The code above returns a number of items when used to select all elements. How can I select a specific element, for example the second one? Neither items(2) nor items[2] ...

jQuery Selector not working right

Okay, I cannot figure out what I m doing wrong here... Take the following jQuery selector... $( tr[batchid]:has(span.chkselb input:checked) span[id=assetcount] ) This returns 2 elements. Yet if I ...

jQuery select where attribute = value

I am trying to select an input where the value equals a dynamic value trimmed = jQuery.trim(a); preSelectedCheckBox = $(this).find("input[value=" + trimmed + "]"); The element exists but I ...

help with onseek and selectors

I am using this: $(function() { // initialize scrollable window.api = $("div.scrollable").scrollable({ clickable: true, activeClass: "active",...

Object-Oriented jQuery Question

$("#e1").click(function() { $("#descriptions div").removeClass("show"); $("#e1d").addClass("show"); }); $("#e2").click(function() { $("#descriptions div").removeClass("show"); $("#e2d")....

热门标签