一、在输入框中输入数字,点击按钮,实现对应事件的功能。 html代码: <input id="txt1" type="text" value="2" /> <input id="Button5" type="button" value="改变大于N的行背景为绿色" /> jQuery代码: //改变大于N的行背景为绿色 $("#Button5").click(function () { //获取到ID为txt1的输入框的文本值 var num = $("#txt1").val(); //tr的行的下标从0开