爲什麼這不起作用?爲什麼jQuery選擇器不工作?
$(document).ready(function(){
var content = '<a href="http://example.com/index.php><b>Some text!</b></a> - <a href="http://example.com/index.php" class="ot-origin-anchor">News</a>';
$("#test").replaceWith(function(){
return content;
});
//Here is the problem. I don't know why but I can't define adres.
var adres = $("#test .ot-origin-anchor").attr("href");
//find example.com - ugly :P
var adresRegExp = adres.match(/(\w+:\/\/+(www.|))([^/]+)/);
alert(RegExp.$3);
});
</script>
<div id="test">bnb</div>
你有什麼要完成,如果你想定義鏈接到的div我認爲這是錯誤的 – Jorge
我試圖改變「新聞」變成「example.com」? (內容來自Google Buzz)。 – Isinlor