接下来是我的最后一个问题。我现在有这个:

<a id='testOne'>One</a>


和这个JavaScript:

//To remove the title and default action.
$("#testOne").attr("title", "").click(function(e){
  e.preventDefault();
}).attr("onclick", null);

//To reset the title and action
$("#testOne").attr("title", "Test One").click(function(e){
  doTest('one');
});


但是,当我的链接(其样式类似于按钮)被重置时,光标是十字线而不是指针。我检查了一下,并将其设置为auto。有什么方法可以将其设置为指针吗?

最佳答案

那是因为您在锚标记中没有href属性。尝试这个

<a id='testOne' href="#">One</a>


要么

<a id='testOne' href="javascript:void(0);">One</a>

08-19 06:28