我有以下 html 字符串contentString
:
var content =
'<div id="content">' +
'<div>' +
'<input name="tBox" id="select" type="checkbox" value="" '+
'onclick="changeView()"> Select for operation' +
'<p style="text-align:right"><a href="#">View details</a></p>' +
'</div>' +
'</div>';
在这里,我如何select
通过 id 找到复选框并添加在功能上检查的属性changeView()
?
function changeView(m) {
//find the select id from content string
var checkbox = content.find($('#select'+m));
// Apply the checked property on checkbox.
checkbox.attr("checked","checked");
}
提前致谢。