移除特定option
$('#Id option[value=6]').remove();
移除select內的所有option
$('#select option').remove();
select加option
$("#selectList").append(new Option("option text", "value"));
select readonly
$("#select").attr('disabled', true);...
2019年1月9日 星期三
Command Push流程
推到遠端
git push -u origin <branch>
merge到master
git checkout master
git merge <欲合併的分支>
更新遠端master
git push -u origin master
刪除branch可不做
git branch -d <欲刪除的分支&g...