1、新建一个html文件,命名为testhtml,用于讲解。
2、在testhtml文件内,在p标签内,使用a标签创建一个链接,同时设置id为mylink,主要用于下面通过该id获得a对象。
3、在testhtml文件内,给a标签添加title属性,属性值为“这是测试的链接”。
4、在testhtml文件内,使用button标签创建一个按钮,按钮名称为“获得title内容”。
5、在testhtml文件中,给button按钮绑定onclick点击事件,当按钮被点击时,执行getitle()函数。
6、在js标签内,创建getitle()函数,在函数内,通过id(mylink)获得a对象,使用attr()方法获得title属性值,即title的内容,最后,使用alert()方法将获得的内容输出。
7、在浏览器打开testhtml文件,点击按钮,查看实现的效果。
您好!很高兴为您答疑。
如果想要在火狐下使用该方法,可以尝试重写一下。实例代码请参考:
<script language=”javascript”>
function isIE(){ //ie
if (windownavigatoruserAgenttoLowerCase()indexOf(“msie”)>=1)
return true;
else
return false;
}
if(!isIE()){ //firefox innerText define
HTMLElementprototype__defineGetter__( “innerText”,
function(){
var anyString = “”;
var childS = thischildNodes;
for(var i=0; i<childSlength; i++) {
if(childS[i]nodeType==1)
anyString += childS[i]tagName==”BR” ‘\n' : childS[i]textContent;
else if(childS[i]nodeType==3)
anyString += childS[i]nodeValue;
}
return anyString;
}
);
HTMLElementprototype__defineSetter__( “innerText”,
function(sText){
thistextContent=sText;
}
);
}
</script>
如果对我们的回答存在任何疑问,欢迎继续问询。
比如页面有一个节点
<a href="url地址" id='testa'>连接</a>现在要获取A标签的值,也就是“连接”
1、通过dom方式获取a标签节点
var a = documentgetElementById('testa');2、通过innerText获取标签的值
var s = ainnerText;//获取“连接”以上就是关于jquery如何获得a标签内title中部分内容全部的内容,包括:jquery如何获得a标签内title中部分内容、js怎样获取火狐a标签里面的内容呢<a>获取这几个字</a>、js如何取A标签中的是值等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)