1

我想知道如何通过 onclick 函数使用 javascript 创建隐藏类型输入框和标签。

$().ready(function() {  
    $("#product").autocomplete("get_completeproducts", {            
        width: 406,
        matchContains: true,
        selectFirst: false
    });
});


<input type="text" value="" name="product" id="product" size="50">
<input type="button" value="Add to List" onclick="addprotolist()" name="select_pro">

我通过ajax自动完成获得上述输入框的值,用户将点击选择框,然后我要做的是,我必须在输入框下方添加列表选择的手机数量,如

<label>Samsung Galaxy Y<label><input type="hidden" value="778" name="pro_id[]">
<label>Samsung Galaxy Y Duos<label><input type="hidden" value="788" name="pro_id[]">
<label>Samsung Galaxy Y Plus<label><input type="hidden" value="728" name="pro_id[]">
.
.
.
<input type="submit" name="save" value="Save your list">

任何人都可以向我提供如何使用 javascript 或 jquery 编写代码。

4

1 回答 1

4
function addprotolist() {
  var str = '<label>'+ var_for_text +'</label><input type="hidden" value="'+ var_for_value +'" name="pro_id[]">';
  $('#yourform').append( str );
}

笔记

如果你想使用循环追加多个inputlabel,不要在循环内调用 append,它会降低性能。像上面一样制作一个字符串.append(),最后调用循环。

例如

var str = '';
function addprotolist(inputObj) {

  // a typical example of inputObj may be
  // inputObj = [ {labelText: 'some 1', value: 'val1' }, {labelText: 'some 2', value: 'val2'} ]

  // loop
  for(var i = 0; i < inputObj.length; i++ ) {
    str += '<label>'+ inputObj[i].labelText +'</label><input type="hidden" value="'+ inputObj[i].value +'" name="pro_id[]">';
  }

  // call append outside of loop
  $('#yourform').append( str );
}

但是这种方式使用label. input您必须通过包装它或通过指定for指向输入的属性将其连接到您的id

<!-- Simple label example with for attribute -->  
<input type="radio" name="clickmebutton" id="clickmebutton">
<label for="clickmebutton">Click me</label>  

<!-- or more simply -->  
<label><input type="radio" name="clickmebutton"> Click me</label>  

来自labelMDN

于 2012-06-29T08:49:02.913 回答