下面的代码给了我一个警报,里面只有一个 # 符号。为什么?
编辑:我应该注意代码在 jQuery .click 事件中......如果我把它放在外面,它可以正常工作。这是更完整的代码:
$('#continue').click(function(){
var _href = $("#continue").attr("href");
alert(_href);
});
<a href="selectRadius.html" data-icon="arrow-r" id="continue" style="float:right;" data-role="button" data-inline="true">Continue</a>
EDIT2:这在 jsfiddle 中一切正常。但在 xcode iphone 模拟器中,我只得到#。