添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接

第一种:单独div

<div id="test" value="yes" > </div> 

通过JS直接得到div的value属性是得不到的,输出为undefined 这是因为div没有value属性 所以这样是得不到的

要用t1.getAttribute("value");

第二种:多个div

举例:这里用button举例。区别在于$("button")是获取到button标签。

$("div")或者设置div标签的唯一id即可获取div

<%@ page language="java" contentType="text/html; charset=UTF-8"
	pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
	<!--循环输出了许多p,点那个获取到点击的那个的value 然后ajax发送出去这个value ??怎么弄 -->
	<div id="1">
		<button value="20">点我获取Value</button>
		<button value="21">点我获取Value</button>
		<button value="22">点我获取Value</button>
		<button value="23">点我获取Value</button>
</body>
<script
	src="${pageContext.request.contextPath}/lib/jquery/jquery-1.11.1.js"
	type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
	$(document).ready(function() {
		$("button").click(function() {
			var bId = this.value;
			console.log(bId);
			$.ajax({
	/*ajax请求,显得到当前点击的button的id和value(课程ID)  */
</script>
</html>

二:js遍历的button

无需关注ajax,这里的思路是将要获取的的标签添加onclick()事件,并将value传入。通过点击事件获取到当前循环遍历出的标签内的值。

<button id="replybtns" onclick="replyUser('+resp[i].fromUserId+')"  type="button" class="btn btn-default right" value="'+resp[i].fromUserId+'">回复</button>'
$(function() {
				var courseId = "${courseId}";
				console.log(courseId);
				$.ajax({
					url:"${pageContext.request.contextPath}/discuss/getFrontReplyDiscuss.action",
					data:{"courseId" : courseId},
					dataTyoe:"json",
					success:function(resp){
						console.log(resp);
						var str = '';
						for(var i=0;i<resp.length;i++){
						    str +=
						    '<div class="dis-content"> '+
						    	'<span class="name-desp" id="userName">'+resp[i].fromUser+'</span>'+
						    	'<span class="label label-default">回复</span>'+
						    	'<span class="name-desp" id="userName">'+resp[i].byReplyUser+'</span>'+
						    	'<span class="tie-time" id="pubTime">'+resp[i].publishTime+'</span>'+
						    	'<div>'+
						    		'<div class="panel panel-default">'+
						    			'<div class="panel-body" id="outline" value="'+resp[i].fromUserId+'"  >'+
						    				resp[i].content
						    			+'</div>'+
						    		'</div>'+
						    		' <button id="replybtns" onclick="replyUser('+resp[i].fromUserId+')"  type="button" class="btn btn-default right" value="'+resp[i].fromUserId+'">回复</button>'+
						    	'</div>'+
						    '</div>'+
						    '<span class="blank20"></span>'				
						$("#rdiscuss").html(str);

获取方法:

                function replyUser(id){
				    var bId1 = id;
				    console.log(bId1+"我爱你");
				    $.ajax({
					    //发送请求
		1.想要获取用户的内容  什么时候获取?
			 用户输入内容后? 还是 满足触发事件后	..比如:点击Button按钮获取	
		2. 如何在点击 button获取 input标签text 的内容 
		3. 计算Number数据 需要转换 input 的(是string)
			转换方式 parseFloat(),-0,parseInt (不能算小数)
		4. 判断 select  用户选择了 哪个(判断语句不讲了,)
				
本来感觉这是一件so easy 的事情. 上来就 document.getElementById(“majorId”); <div class="major-nav" id="majorId" value="#(data.id)">#(data.name)</div> //取不到 var elementById = document.getElementById("majorId"); //能取到 var value = elementById
这是我自己最近做的项目的一段jsp代码, <table id="Mytable" class="table table-hover table-bordered table-striped" style="margin-bottom: 0px;"> <th>序号</th> <th>设备名称</th> <th>设备编号</th> <th>设备类型编号&l
1、div没有value,但是在js内我们可以给他添加 方法一:可通过 var val = document.getElementById('id名').getAttribute('value')获取 方法二:点击事件可通过var val = $(this).attr("value"); 获取
今天又碰到了SB问题,其实我只想得到buttonvalue,因为我的控件用的是button标签,悲剧呀。代码如下 &lt;button value="css btn" id="mybtn"&gt;Text&lt;/button&gt;  而我用jquery来获取这个button,我发现 IE 获得的其实是Text,并不是里面的value 属性,而火狐是正常的。 $(document)...
### Cause: org.apache.ibatis.reflection.ReflectionException: There is no getter for property named ' 元素类型为 "association" 的内容必须匹配 "(constructor?,id*,result*,association*,collection*,discriminator?)"