1.火狐中可以使用document.getElementById("div_id").textContent获取div的内容,IE中可以使用document.getElementById("div_id").innerText获取div的内容。
2.javascript可以通过ajax上传文件,具体为$.ajaxFileUpload({});,需要引用相应的js文件方可使用该方式。
3.javascript可以通过window.location.search来得到通过get方式传过来的参数。
4.javascript可以通过window.navigator.userAgent.toLowerCase().indexOf("msie") > 0这句代码来判断是否是IE浏览器。
5.javascript可以用过$("#tableName tr").eq(tr_key).children("td").eq(td_key).text();得到某td的内容。
6.art.dialog.open弹出框中,可以使用this.iframe.contentWindow.document.getElementById("#A").value这句代码获得弹出框内ID为A元素的值。
7.jquery获得下拉列表选中值的代码为$("#ID option:selected").val()。
8.javascript里面通过document.getElementById("ID").options[iframe.document.getElementById("ID").selectedIndex].text;可以得到下拉列表选中项的名称。