JS——メモ

1455 ワード

1、urlを提出して新しいウィンドウを開き、ウィンドウのパラメータを設定します.
    function _openCodeListWin(){
        var height = window.screen.height;
        var width = parseInt(window.screen.width / 2);
        var url = "/clm/showDoctorCode.do";
        var nw = window.open(url,"_new","scrollbars=yes,resizable=yes,left="+width+",top=0,width="+width+",height="+height);
    }
2、formで提出し、forms[0]で提出したのは最初のフォームで、FormNameはフォームname属性です.
        var form = document.forms[0];
        var url="/clm/showDoctorCode.do";
        form.action=url;
        form.submit();
	var oForm = document.FormName;	
	oForm.submit();
3、input割当値
$("#doctor_desc").val("");
4、テーブル指定の列と行の値を取得する
table.rows[i].cells[i].innerHTML
5、テーブルの行の数列
document.getElementById("myTable").rows.length
document.getElementById("myTable").rows[0].cells.length
6、新しいウィンドウを開き、スタイルとtitleを設定します.
var url = "/clm/showDoctorCode.do?type=search";
var nw = window.open(url,"_new","scrollbars=yes,resizable=yes,left=200,top=50,width=700,height=600");
setTimeout(function(){ nw.document.title = 'searchCode'; }, 500);
7、提出する