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.
缺少引号的简单情况。
var x = '<select><option value=$('#blah').val()>$('#blah').val()</option>';
本来应该:
var x = "<select><option value='$('#blah').val()'>$('#blah').val()</option>";
然后效果很好!