After the user makes some selection changes on the selection element, when the user wants to cancel or reset the form, the system-selected options need to be displayed to the user. (The focus is to reset the form selection element and return to the default selected option value in the view when canceling or resetting the form)
<button>重置</button> <select> <option>1</option> <option>2</option> <option>3</option> </select> <select class="jbselect"> <option>a</option> <option >b</option> <option selected>c</option> </select>
This is a way to preserve selection history and allow values to be rolled back on each reset button click...