App下載
首頁javascriptanchorjQuery HTML Element - 如何刪除href屬性...

jQuery HTML Element - 如何刪除href屬性...

我們想知道如何刪除href屬性。...

<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
  src='http://code.jquery.com/jquery-1.7.1.js'></script>
<script type='text/javascript'>
$(window).load(function(){
    $('#thumbContainer').on("click","a", function(){ 
      console.log("will work now"); 
    }); 
    var thumb = $('<a class="tinythumb">thumb</a>');
    $("#thumbContainer").append(thumb);
});
</script>
</head>
<body>
  <div id="thumbContainer"></div>
</body>
</html>