js小笔记


JSP中form提交

document.forms[0].submit();

点击 连接
onclick="location.href='tax.lite.prototype.Pt4.cmd?method=remove'"

document.getElementById 返回 ID 属性值与指定值相同的第一个对象,如果 ID 属于一个集合,getElementById 方法返回集合中的第一个对象


radios 是一个集合
var radios=document.getElementsByName("xxcjXh");
for(i=0;i<radios.length;i++)
if(radios[i].checked){
xxcjXh=radios[i].value;
break;

<input type="text" id="a" readonly/>
<script>
document.getElementById("a").value = "abcde";
</script>


<a href="javascript:'http://localhost:8080/reagerter.do?user='+ document.all.username.value;"></a>

js赋值

<script>
window.onload=function()
{
document.form1.textfield.value="xxxx" //第一种
$(" name").value="XXXX";//第2种

}
</script>


处理enter事件
onkeydown="ifEnter('getUserNames()')

处理 ctrl+s事件

onkeydown="ifCtrl('S','add()')"

你可能感兴趣的:(js)