Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为我的选择下拉菜单设置选项,该下拉菜单已从数据库传回。
"<td><select id=\"sel" + res.sku.replace(/[^a-z0-9\s]/gi, '').replace(/[_\s]/g, '-') + "\"><option>True</option><option>False</option></select></td>" +
我让它通过选项 true 或 false,我将如何在选项上设置它?
提前致谢。
请参阅文章:.prop() 与 .attr()
$('#sel').prop('checked', false)
或者,您可以根据应用程序的逻辑将 false 更改为 true。
我同意 Sable 的观点,在这种情况下单选按钮可能是更好的选择,但如果您决定使用下拉列表,您可以尝试以下操作:
"<option" + (myValue === true ? " selected" : "") + ">True</option><option" + (myValue === false? " selected" : "") + ">False</option></select></td>"