asp:Image Id="imgIdCard" から ImageUrl を取得し、代わりにパラメーターとして設定して、固定値をロードしたいと考えています。
注: ImageUrl の値は既に割り当てられているため、表示されませんが、既に値が設定されています。
これが HTML コードです。
<div class="page" >
<div class="box cf">
<div class="left">
<span class="demowrap">
<asp:Image ID="imgIdCard" class="imgClass" runat ="server"/>
</span>
</div>
<div id="dialogEditor">
<div class="images">
<div id="cropzoom_container">
</div>
</div>
</div>
ソースでは、今のところ固定値 [ソース: 'xray-linux.jpg'] がありますが、この固定値の代わりに asp Image Id="imgIdCard" の imageUrl の値を渡したいと思います。
<script type="text/javascript">
$(document).ready(function () {
var cropzoom = $('#cropzoom_container').cropzoom({
width: 400,
height: 300,
bgColor: '#CCC',
enableRotation: true,
enableZoom: true,
selector: {
centered: true,
borderColor: 'blue',
borderColorHover: 'yellow'
}
,
image: {
source: 'xray-linux.jpg',
width: 1920,
height: 1450,
minZoom: 10,
maxZoom: 150
}
});
});
次の行の下を置き換えて、これにimageUrlの値を割り当てるためにJqueryで必要な命令はどれですか?
source: 'xray-linux.jpg',