我创建了一个带有复选框的表单。当用户选择请求的复选框并点击提交按钮时,它将以网页链接的形式返回值。我可以显示要显示的项目,但不知道如何使用查询正确编写 url 值。任何帮助将非常感激。
<form>
<br>
<input type="checkbox" name="http://www.google.com" name="check" value="Option 1" id="ch1">
<label for="ch1">Checkbox 1</label>
<input type="checkbox" name="http://www.yahoo.com"name="check" value="Option 2" id="ch2">
<label for="ch2">Checkbox 2</label>
<input type="checkbox" name="http://www.weather.com" value="Counseling Services" id="ch3">
<label for="ch3">Checkbox 3</label>
<input type="checkbox" name="http://www.cnn.com" value="Financial Aid" id="ch4">
<label for="ch4">Checkbox 4</label>
<input type="checkbox" name="http://www.foxnews.com" value="Fitness and Recreation" id="ch5">
<label for="ch5">Checkbox 5</label>
<input type="checkbox" name="http://www.gmail.com" value="Health Services" id="ch6">
<label for="ch6">Checkbox 6</label>
</form>
<button>Show Results</button>
<p>Results:<span id="results"></span></p>
function showValues() {
var fields = $( ":input" ).serializeArray();
$( "#results" ).empty();
jQuery.each( fields, function( i, id, name ) {
$( "#results" ).append(' <a href= "input.name" > ' + id.value + " " );
});
}
$( "button" ).click( showValues );
$( "select" ).change( showValues );
showValues();