Skip to content

Instantly share code, notes, and snippets.

@netputer
Created October 17, 2012 09:19
Show Gist options
  • Save netputer/3904638 to your computer and use it in GitHub Desktop.
Save netputer/3904638 to your computer and use it in GitHub Desktop.
通过 jQuery 选择器创建 HTML 元素
$('<select/>', {
html: $('<option/>', {
html: 'All'
})
});
// <select>​<option>​All​</option>​</select>​
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment