gpt4 book ai didi

android - 我怎样才能使多个复选框下拉列表成为选中状态

转载 作者:太空狗 更新时间:2023-10-29 15:02:36 25 4
gpt4 key购买 nike

 <Select id="chkProduct" multiple="true" class="form_input1" placeholder="Product">
<option selected disabled>Product</option>
</select>


$(function () {

$(document).ready(function() {
var hi = window.localStorage.getItem("rohil");

$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: 'http://202.71.16.74/news/Service.svc/GetContactData',
data: '{"ContactID":"' + hi +'"}',
dataType: "json",
processData: false,
success: function (data) {

$("#branchname").val(data.d.Data[0].BranchName);
$("#add1").val(data.d.Data[0].Address1);
$("#chkProduct").val(data.d.Data[0].Product);

},
error: function (result) {
alert("Error");
}
});

});
});

上面是在获取字符串中的值(即 aa、dd、ee)后我想要检查 checkbod 的图像

要检查值aa,检查dd

最佳答案

我会尝试使用 jquery 来更改复选框状态。

   <script>
$(document).ready(function(){//jQuery document function. Is called only once!
if(document.getElementById("string").innerHTML == 'smth'){
//Takes your string inner html- what you have written.
document.getElementById("myCheck1").checked = true;
document.getElementById("myCheck2").checked = true;
//makes your first and second checkbox checked
}
});
</script>

要按类名检查,请将 document.getElementById 的行更改为:

       document.getElementsByClassName("check")[0].checked = true;
document.getElementsByClassName("check")[1].checked = true;

这仅在您的字符串已经存在时才有效!否则,您可以尝试添加 onkeyup 函数。

<script type="text/javascript">
function myfunction() {
//do smth
return;
}
</script>
<input type="text" name="foo" onKeyUp="return myfunction()" />

关于android - 我怎样才能使多个复选框下拉列表成为选中状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25058746/

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