作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
<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/
我是一名优秀的程序员,十分优秀!