如何在所有链接中添加标题属性标记,在Javascript的帮助下必须与锚文本相同?
答案 0 :(得分:1)
尝试循环使用scanf_s("%lf %c %lf", &a, &oper, 1, &b);
获取文字使用.text()
将其附加到属性:
.attr()
或纯粹的js:
$('a').each(function(){
$(this).attr('title',$(this).text());
});
答案 1 :(得分:1)
只需尝试
var labelXml = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>";
答案 2 :(得分:0)
你走了!
$(document).ready(function() {
$('a').attr('title', "I'm Set on all links")
});
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<p>
<a href="#">I'm Link</a>
</p>
<p>
<a href="#">I'm Link</a>
</p>
<p>
<a href="#">I'm Link</a>
</p>
<p>
<a href="#">I'm Link</a>
</p>
&#13;
<强>逻辑强>
1.握住锚标签
2.设置title
属性
答案 3 :(得分:0)
最后,本规范对我有用
<script>
$(document).ready(function(){
$('a').each(function(){
$(this).attr('title',$(this).text());
});
});
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
感谢所有回答此问题的家伙。