我有一个使用 jquery mobile 的页面,我遇到了以下简单问题:
在 DOM 中某处带有(单个)链接的网页:
<a data-theme="a" data-role="button" href="https://m.mybet.com">
Smartphone-Version nutzen</a>
我在html中添加了一个这样的按钮
<input type="button" onclick="javascript:remove_link();"/>
我的 javascript 看起来像这样:
<script type="text/javascript">
function remove_link() {
console.log("1")
$("a").remove();
console.log("2")
}
</script>
但是,当单击按钮时,chrome 浏览器会告诉我:
Uncaught TypeError: Cannot call method 'remove' of null
remove_link
onclick
我也尝试了 empty() ,同样的问题。为什么?