问题描述
- 如何获取 draw的 HTML的属性值
-
var sck = "<div id='content'>"+ "<input type='checkbox' name='soft' style='float:right;margin:4px' id='"+truckNo+"' />" + "<p style='margin:0;line-height:1.5;font-size:13px;text-indent:2em'>"+content+"</p>" + "</div>";
如何在上面代码中获取 属性值;
并保证被 checked
解决方案
你要选中增加checked属性就行了。你的只是字符串,要通过dom的方法来获取要先添加到dom中才行
<input checked type='checkbox'
时间: 2025-01-15 11:30:38