1.在js中 如何用Jquery 获取一个文本框中的值 文本框中ID="UserName"?
=(当然也可以用DOM对象的方式访问页面里面的ID值为“username”)
$("#a").val()就是获取id=username的input的value的值。
2.创建一维数组,将:“a”,"b","c"三个字符放入该数组中。
关于这个js有两种方式:
实例后复制:
var arr=new Array();
arr[0]='a';
arr[1]='b'
arr[1]='c'
实例时赋值:
var
arr =
new
Array(
'one'
,
'two'
);
3.弹出一个新页面,并Post本页面的值到该新弹出的页面中。
首先新建一个index.jsp,在里面添加一个form表单,和一个button。在form中设置method为POST,并且设置好action为需要跳转的jsp页面,target参数设为_blank,表示新打开一个窗口。然后为button添加响应事件,调用form的submit方法。index.jsp代码如下:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP 'index.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
<script type="text/javascript">
function newPage(){
//var name=document.getElementById("name");
//var pwd=document.getElementById("pwd");
var newPage=document.getElementById("newPageForm");
newPage.submit(); //提交实现跳转
}
</script>
</head>
<body>
<form id="newPageForm" action="newPage.jsp" target="_blank" method="POST">
<label for="name">用户:</label>
<input type="text" id="name" name="name"/>
<br>
<label for="pwd">密码:</label>
<input type="text" id="pwd" name="password"/>
</form>
<button onClick="newPage()">打开新页面</button>
</body>
</html>
4.撰写css样式,将鼠标样式变成手指式!
在自行设置的div或者其他标签中,为了更好的体验效果,会将在滑动过程中,将鼠标变为手势
简单总结下css对应的样式。
所在的div中,添加cursor:pointer即可。
示例:
<div id="doPrint" style="border: solid;width: 64%;
margin: 0% 20%;
height: 65%;
display: block;
cursor:pointer;">
手势变化区域
</div>
对应的属性值还有如下:
auto :标准光标
default :标准箭头
pointer, hand :手形光标
wait :等待光标
text :I形光标
vertical-text :水平I形光标
no-drop :不可拖动光标
not-allowed :无效光标
help :帮助光标
all-scroll :三角方向标
move :移动标
crosshair :十字标