アンカー タグの href 値を変更すると問題が発生します。基本的には、ログインしたユーザーの社員IDからツールチップページを開く手がかりを使いたいと思っています。
ヒント コード:
$(document).ready
(
function () {
$('#sticky').cluetip({ sticky: true, closePosition: 'title', arrows: true });
$('a.jt:eq(0)').cluetip({
cluetipClass: 'jtip',
arrows: true,
dropShadow: false,
hoverIntent: false,
sticky: true,
mouseOutClose: true,
closePosition: 'title',
closeText: '<img src="Images/cross.png" alt="close"/>'
});
}
これで、アンカー タグが表示されます。
<a class="jt" style="color: #FFFFFF;" id="Anchor_work" runat="server" href='WorkExp.aspx?Emplid=12345'>Previous Work Experience</a>
jqueryを使用してhrefリンクを正しい従業員IDを指すように変更しようとしています。そのため、従業員IDの値をDIVに保存することを考えました。
<div id="Workexp_div" runat="server"/>
DIV タグを使用して href を変更する JQuery:
$(document).ready
(
function () {
$('#sticky').cluetip({ sticky: true, closePosition: 'title', arrows: true });
$('a.jt:eq(0)').cluetip({
cluetipClass: 'jtip',
arrows: true,
dropShadow: false,
hoverIntent: false,
sticky: true,
mouseOutClose: true,
closePosition: 'title',
closeText: '<img src="Images/cross.png" alt="close"/>'
});
function showDivText() {
//divObj = document.getElementById('Workexp_Div');
divObj = document.getElementById("#<%= Workexp_Div.ClientID %>");
if (divObj) {
if (divObj.textContent) { // FF
alert(divObj.textContent);
} else { // IE
alert(divObj.innerText); //alert ( divObj.innerHTML );
}
}
}
//var new_href = "WorkExp.aspx?Emplid=" + $('#ctl00_ContentPlaceHolder1_Workexp_div').InnerText;
var new_href = "WorkExp.aspx?Emplid=" + showDivText();
$("#Anchor_work").attr("href", new_href);
//= 'WorkExp.aspx?Emplid='+ $('#ctl00_ContentPlaceHolder1_Workexp_div').InnerText;
}
);
上記のコードを実行すると、現在のコンテキストに WorkExp_div が存在しないというエラーが表示されます。divObj = document.getElementById('Workexp_Div'); を実行してクライアント ID を削除してみました。ただし、オブジェクトは null として返されます。
div タグの値を取得し、タグの href の値を変更する方法を教えてください。
どうもありがとう