如何在html页面中设置表格中的选定选项?

时间:2015-01-18 07:04:50

标签: javascript jquery html

我必须将选定的选项从index.html页面传递给form.html。现在在这种形式中,将有一个必须相同的字段,它在index.html页面中被选中。我将如何做到这一点?

的index.html

<div class="form-group col-md-6 col-sm-6">
    <label for="">Search By Services</label>
        <select class="form-control selectpicker">
            <option>Carpenter</option>                                      
            <option>Mobile SIM services</option>
        </select>
</div>

form.html

   <div class="form-group">
     <label class="col-lg-3 control-label">City:</label>
        <div class="col-lg-9">
          <input type="text" class="form-control" id="city" value="Bangalore" name="" placeholder="" readonly="readonly">
        </div>
   </div>

1 个答案:

答案 0 :(得分:1)

从第一个表单中获取值,&#34; POST&#34;或&#34; GET&#34;它最好通过服务器端语言使用会话到服务器,并以其他形式使用它。