请补全JavaScript函数,根据id获取html模块中ul标签下第二个li元素并返回。
加载中...
<ul> <li>1</li> <li id = 'li'>2</li> <li>3</li> </ul>
function getLI(id){ // 补全代码 }