当我们已经设置了程序中给出的值时,如何清除表单数据。 通过使用清除按钮

<div class="form-group">
      <label for="country">Country</label>
      <input type="text" class="form-control" id="country" placeholder="Enter Country" name="country" value="XXXXX" >
</div>

<div class="form-group">
      <label for="social">Social media</label>
      <input type="text" class="form-control" id="linkedin" placeholder="Enter url" value="http:\\www.google.co.in" name="url">
</div>
<button type="reset" class="btn btn-primary" name="reset" onclick="resetform(form); return false;">Clear</button>

you can use jQuery to clear all input from form/div tag like

$('.form-group').find('input:text').val('');

Just the reset button should do the magic:

<input type="reset" value="Clear">

Update 1:

<button type="reset" class="btn btn-primary" name="reset">Clear</button>