0

複数の送信がある場合、href を使用してフォームを送信するための提案はありますか?

  <form id="form-id">

    <input type='text'name='name'>

    <input type='submit' value='Preview' name='preview'/>
    <input type='submit' value='Add' name='add'/>



  </form> 

この方法で1つの送信を使用してそれを行う方法を知っているだけです:

<a href="#" onclick="document.getElementById('form-id').submit();"> submit </a>
4

1 に答える 1

0

Edited

use this way:

<input type='submit' id='PrevSubmit' value='Preview' name='preview' 
style='display:none;' />

<input type='submit' id='addSubmit' value='Add' name='add' 
style='display:none;'/>

add two a tag like this:

<a href="javascript:void(0);" 
onclick="document.getElementById('PrevSubmit').click();">
  Preview 
</a>
<a href="javascript:void(0);" 
onclick="document.getElementById('addSubmit').click();">
 Add </a>
于 2013-03-27T19:40:54.607 に答える