js或者jquery如何给每个数组添加自定义title属性

js或者jquery如何给每个数组添加自定义title属性,第1张

你可以这样 *** 作:

<div id="untitle"></div>

<script>

$(document).ready(function(){

$("#untitle").attr("title","赋值")

})

</script>

希望能帮助你。

<html>

<head>

<title>New Document </title>

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>

<script type="text/javascript">

$(document).ready(function(){

$("#onclick").click(function(){

$("#test").children("option").each(function(){

$(this).attr("title",$(this).val() + $(this).text()) // 给option加title 内容为 option的值和显示的字

})

})

})

</script>

</head>

<body>

<button id="onclick">加title</button>

<select name="" id="test">

<option value="1" >A</option>

<option value="2" >B</option>

</select>

</body>

</html>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11415080.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-15
下一篇 2023-05-15

发表评论

登录后才能评论

评论列表(0条)

保存