gpt4 book ai didi

javascript - onclick 复选框将复选框值附加到 URL

转载 作者:行者123 更新时间:2023-11-30 18:31:48 25 4
gpt4 key购买 nike

我想使用 jquery 而不是内联来实现它,但它不起作用,内联工作正常。我想使用 jquery 的另一个原因是,如果用户选择了多个复选框,则 url 应该附加任何已经存在的 + 或“第二个复选框值”,如下所示:“http://mysite/sites/dev/contact-us/Pages/LocationSearchTestPage.aspx?s=bcs_locations&k=Office OR Hospital”OR 前面和后面的空间很好..我怎样才能做到这一点?有人可以帮帮我吗?

 Offices<input name="LocType" type="checkbox"  
value="Office" onclick="window.location='http://mysite/sites/dev/contact-us/Pages/LocationSearchTestPage.aspx?s=bcs_locations&k=Office'; return true;"> &#160;
Hospitals<input name="LocType" type="checkbox"
value="Hospital" onclick="window.location='http://mysite/sites/dev/contact-us/Pages/LocationSearchTestPage.aspx?s=bcs_locations&k=Hospital'; return true;"> &#160;
Facilities<input name="LocType" type="checkbox"
value="Facility" onclick="window.location='http://mysite/sites/dev/contact-us/Pages/LocationSearchTestPage.aspx?s=bcs_locations&k=Facility'; return true;">

最佳答案

绑定(bind)到复选框上的更改事件。单击时读取当前复选框值,然后读取所有其他相关复选框。将您的基本 url 附加到您的自定义查询字符串并发疯。 :)

这没有经过测试,但希望它是一个很好的起点。

var baseUrl = 'http://mysite/sites/dev/contact-us/Pages/LocationSearchTestPage.aspx?s=bcs_locations&k=';

$(document).ready(function () {

// listen to change event (customize selector to your needs)
$('input[type=checkbox]').change(function (e) {

e.preventDefault();

if ($(this).is(':checked')) {

// read in value
var queryString = $(this).val();

// loop through siblings (customize selector to your needs)
var s = $(this).siblings();
$.each(s, function () {

// see if checked
if ($(this).is(':checked')) {

// append value
queryString += ' OR ' + $(this).val();
}
});

// jump to url
window.location = baseUrl + queryString;
}
});

});

关于javascript - onclick 复选框将复选框值附加到 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9441374/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com