如何在提交前显示复选框值或在勾选时自己显示?

时间:2013-08-19 17:50:04

标签: php javascript html

我有以下代码:

<form method="post">
<input type="checkbox" name="fruit[]" value="apple" id="apple" /><label   for="apple">Apple</label><br />
<input type="checkbox" name="fruit[]" value="pinapple" id="pinapple" /><label for="pinapple">Pinapple</label><br />
<input type="checkbox" name="fruit[]" value="grapefruit" id="grapefruit" /><label for="grapefruit">Grapefruit</label><br />
<input type="submit" name="go" />
</form>
<?php 
$fruitList = implode(', ', $_POST['fruit']);
echo $fruitList;
?>

提交后会显示已检查的项目。这是否可能在提交之前在输入框中显示勾选的项目值。

3 个答案:

答案 0 :(得分:1)

我能想到的唯一方法是将一个事件附加到复选框,并在另一个区域显示单击的事件。假设您使用的是JQuery,代码应该是这样的:

$('input[type=checkbox]').change(function() { // Listen to change on your checkbox
  var checked = '';
  $.each($('input[type=checkbox]:checked'), function(k, v) { // Iterate through the checked ones
     checked = checked + v + ' / '; // Append the value to a string
  }
  $('#display_results').html(v); // Replace the content of a div, span, whatever
});

document.ready上加载此代码并尝试根据您的需要进行调整 当然代码需要一些改变,但基本的想法就是这个。

答案 1 :(得分:0)

是的,肯定是,但需要一些javascript代码。

以下是基于您粘贴的代码段的示例:

http://jsfiddle.net/EmNSe/

<form method="post" name="myForm">
    <input type="checkbox" name="fruit[]" value="apple" id="apple" onclick="selectionListener();" />
    <label for="apple">Apple</label>
    <br />
    <input type="checkbox" name="fruit[]" value="pinapple" id="pinapple" onclick="selectionListener();" />
    <label for="pinapple">Pinapple</label>
    <br />
    <input type="checkbox" name="fruit[]" value="grapefruit" id="grapefruit" onclick="selectionListener();" />
    <label for="grapefruit">Grapefruit</label>
    <br />
    <br />
    <label for="SelectionMade">Selection Made:</label>
    <textarea rows="4" cols="50" name-"SelectionMade" id="SelectionMade">
    </textarea>
    <br />
    <br />
    <input type="submit" name="go" />
</form>

和javascript:

function selectionListener() {

    checkedStr = '';

    if (document.getElementById('grapefruit').checked) {
        checkedStr = checkedStr + "grapefruit is checked!\n";
    }

    if (document.getElementById('pinapple').checked) {
        checkedStr = checkedStr + "pinapple is checked!\n";
    }
    if (document.getElementById('apple').checked) {
        checkedStr = checkedStr + "apple is checked!\n";
    }

    document.getElementById('SelectionMade').value = checkedStr;
}

答案 2 :(得分:0)

完整示例

如果你确认它发送了其他所有内容就停止了。

  1. 使用无限制的复选框。

  2. 一个eventListener。

  3. 兼容性:需要e.preventDefault()(仅限第一个示例)和querySelectorAll()

  4. 在querySelectorAll()中
  5. ,您还可以添加复选框集的名称。

  6. 纯粹的javascript。


  7. <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>checkbox</title>
    <style>
    </style>
    <script>
    (function(W){
     var D;
     function init(){
      D=W.document;
      D.getElementsByTagName('form')[0].addEventListener('submit',h,false);
     }
     function h(e){
      var s=this.querySelectorAll('input[type=checkbox]:checked'),l=s.length,a=[];
      while(l--){a[l]=s[l].value;}
      confirm(a.join(', '))?null:e.preventDefault();
     }
     W.addEventListener('load',init,false)  
    })(window)
    </script>
    </head>
    <body>
    <form method="post">
    <input type="checkbox" name="fruit[]" value="apple" id="apple" /><label   for="apple">Apple</label><br />
    <input type="checkbox" name="fruit[]" value="pinapple" id="pinapple" /><label for="pinapple">Pinapple</label><br />
    <input type="checkbox" name="fruit[]" value="grapefruit" id="grapefruit" /><label for="grapefruit">Grapefruit</label><br />
    <input type="submit" name="go" />
    </form>
    </body>
    </html>
    

    如果您希望更改输入中的结果:

    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>checkbox</title>
    <style>
    </style>
    <script>
    (function(W){
     var D;
     function init(){
      D=W.document;
      D.getElementsByTagName('form')[0].addEventListener('change',h2,false);
     }
     function h2(e){
      var s=this.querySelectorAll('input[type=checkbox]:checked'),l=s.length,a=[];
      while(l--){a[l]=s[l].value;}
      D.getElementById('fruits').value=a.join(', ');
     }
     W.addEventListener('load',init,false)  
    })(window)
    </script>
    </head>
    <body>
    <form method="post">
    <input type="checkbox" name="fruit[]" value="apple" id="apple" /><label   for="apple">Apple</label><br />
    <input type="checkbox" name="fruit[]" value="pinapple" id="pinapple" /><label for="pinapple">Pinapple</label><br />
    <input type="checkbox" name="fruit[]" value="grapefruit" id="grapefruit" /><label for="grapefruit">Grapefruit</label><br />
    <input type="submit" name="go" />
    </form>
    <input id="fruits">
    </body>
    </html>