我尝试模拟UIWebView上的JS点击(我可以通过document.getElementById('MyId'))来实现这一点;
但是在这个例子中,我们发现了一个REF元素,如何让它点击?
<a href="javascript:void(0);" id="details" ref="1" title="|title" class="detail_button tips">
答案 0 :(得分:1)
document.getElementById('MyId').onclick=function(){
var ref = this.getAttribute('ref');
//the ref is your value
if(ref == 1){
this.click();
}
}
答案 1 :(得分:0)
您可以像这样访问ref值属性
document.getElementById('MyId').getAttribute('ref');
答案 2 :(得分:0)
说你有这些链接
<a href="javascript:void(0);" id="MyId" title="title" >1</a>
<a href="javascript:void(0);" id="MyId" ref="1" title="title" >1</a>
<a href="javascript:void(0);" id="MyId1" ref="1" title="title" >2</a>
<a href="javascript:void(0);" id="MyId2" ref="1" title="title" >3</a>
<a href="javascript:void(0);" id="MyId3" ref="1" title="title" >4</a>
并且只有那些将ref属性设置为某个值才能添加click事件的那些?好吧,如果是这样的话,这段代码就会为你做这件事。
aElements = document.getElementsByTagName("a");
for (i = 0; i < aElements.length; i++) {
if (aElements[i].hasAttribute("ref") && aElements[i].hasAttribute("ref") == 1) {
aElements[i].onclick = function () {
alert(2);
}
}
}