我有这段代码:
<div class="popup" data-popup="popup-1">
<div class="popup-inner">
{{=form.custom.begin}}
<div style="display:none">
<input id="co_srid" type="hidden" value='{{=form.custom.widget.service_request_id}}' />
{{=form.custom.end}}
</div>
</div>
$(document).ready(function(){
var cosrid = $("#co_srid").val();
alert("value is-" + cosrid);
});
我希望获得具有Python代码值的#co_srid
的值,现在当我alert
得到我的值
无论如何,我只能获得值9
吗?
答案 0 :(得分:0)
我改变了
value='{{=form.custom.widget.service_request_id}}'
到
value='{{=get_data.service_request_id}}'