私は以下のhtmlを持っています:
<div class="threeimages" id="txtCss">
<a>
<img alt="Australia" src="/Images/Services%20button_tcm7-9688.gif"/>
</a>
<div class="text" id="txtLink">
<h2>
<a href="/partnerzone/downloadarea/school-information/australia/index.aspx">Australia</a>
</h2>
<p>Land of the sunshine!</p>
</div>
</div>
ここで、div ID "txtLink"にhrefがあることを確認した場合、つまり オーストラリア
これは、ページの実行時に、同じhref値がdiv ID "txtCss"の上記のタグにコピーされることを望んでいます。つまり、ページが表示されると、htmlは次のようになります。
<div class="threeimages" id="txtCss">
<a href="/partnerzone/downloadarea/school-information/australia/index.aspx">
<img alt="Australia" src="/Images/Services%20button_tcm7-9688.gif"/>
</a>
<div class="text" id="txtLink">
<h2>
<a href="/partnerzone/downloadarea/school-information/australia/index.aspx">Australia</a>
</h2>
<p>Land of the sunshine!</p>
</div>
</div>
上記の問題のコードを提案してください
更新
jqueryなしの回答: https://stackoverflow.com/a/887348/113
2009年にjqueryを使用することはまったく問題ありませんでした:)
次のようなjsファイルを作成します。
$(document).ready(function() {
$('.threeimages').each(function(){
$(this).DupeHref();
});
});
jQuery.fn.DupeHref = function(){
var target = $(this).find(".text h2 a").attr("href");
$(this).find("a").attr("href", target);
}
HTMLでjqueryとこのJavaScriptファイルの両方を参照します。このようなもの:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Test</title>
</head>
<body>
<div class="threeimages">
<a>
<img alt="Australia" src="/Images/Services%20button_tcm7-9688.gif"/>
</a>
<div class="text">
<h2>
<a href="/partnerzone/downloadarea/school-information/australia/index.aspx">Australia</a>
</h2>
<p>Land of the sunshine!</p>
</div>
</div>
<div class="threeimages">
<a>
<img alt="Belgium" src="/Images/Services%20button_tcm7-9689.gif"/>
</a>
<div class="text">
<h2>
<a href="/partnerzone/downloadarea/school-information/belgium/index.aspx">Belgium</a>
</h2>
<p>Land of beer and food!</p>
</div>
</div>
<script src="./content/js/jquery-1.2.6.min.js" type="text/javascript"></script>
<script src="./content/js/dupetargets.js" type="text/javascript"></script>
</body>
</html>
これはライブラリを使用せずに最短の答えであり、あなたが望むものだけで動作します
var tc = document.getElementById("txtCss");
var ary = tc ? tc.getElementsByTagName("a") : [];
if(ary.length >= 2)
ary[0].href = ary[1].href;
これは単純で理解可能なコードです:
<html>
<head>
<script language="javascript">
function simpleChangeURL(){
var anchors = document.getElementsByTagName('a');
if(anchors != null & anchors.length > 0){
anchors[0].href = anchors[1].href;
}
}
function simpleChangeByAustraliaURL()
{
var anchors = document.getElementsByTagName('a');
var images = document.getElementsByTagName('img');
var imageNeeded;
var anchorNeeded;
if(images != null){
for( var i = 0; i < images.length ; i++){
if (images[i].alt == 'Australia') imageNeeded = images[i];
}
}
if(anchors != null){
for( var j = 0; j < anchors.length ; j++){
if (anchors[j].firstChild.data == 'Australia') anchorNeeded = anchors[j];
}
}
if(imageNeeded != null && anchorNeeded!= null){
var imageAnchor = imageNeeded.parentNode;
imageAnchor.href = anchorNeeded;
}
}
</script>
</head>
<body>
<div class="threeimages" id="txtCss">
<a>
<img alt="Australia" src="/Images/Services%20button_tcm7-9688.gif"/>
</a>
<div class="text" id="txtLink" >
<h2>
<a href="/partnerzone/downloadarea/school-information/australia/index.aspx">Australia</a>
</h2>
<p>Land of the sunshine!</p>
</div>
</div>
<script> simpleChangeByAustraliaURL();</script>
</body>
</html>
以下を使用できます。
var txtLink = document.getElementById('txtLink');
var a = txtLink.getElementsByTagName('a');
if (a != null && a.length > 0) {
var setLink = txtLink.parentNode.getElementsByTagName('a');
if (setLink != null && setLink.length > 0) {
setLink[0].href = a[0].href;
}
}
これはうまくいくと思います。