我无法访问 .js 文件中的变量
我在页面顶部的代码是:
<script type="text/javascript">
privilage = '<%=Session["privilage"]%>';
</script>
然后我想在我的 .js 文件中访问权限。
我现在只想提醒这一点。我能做到吗?
谢谢
我无法访问 .js 文件中的变量
我在页面顶部的代码是:
<script type="text/javascript">
privilage = '<%=Session["privilage"]%>';
</script>
然后我想在我的 .js 文件中访问权限。
我现在只想提醒这一点。我能做到吗?
谢谢
只需使用:
var privilage = '<%=Session["privilage"]%>';
或尝试:
alert(privilage);
它将显示您的会话值
您必须将会话值存储在 HiddenField 中。之后,您可以在 JS 中访问 HiddneFieldValue
<script type="text/javascript">
document.getElementById('hdnField').value = '<%=Session["privilage"]%>';
</script>
采用
<script type="text/javascript">
var privilage = '<%=Session["privilage"]%>';
</script>
我用这种方式。
<asp:TextBox ID="txtValue" runat="server" CssClass="txtValue" style="display: none;" />
然后我使用 jQuery 来访问该值。
<script>
var txtValue = $(".txtValue").val();
</script>
甚至在一个控件上。
<asp:LinkButton ID="lnkPrint" runat="server" CausesValidation="true"
CommandName="Print" CommandArgument='<%# Bind("PrintData") %>'
Text="<img src='/images/print_on.png' onmouseover='cursor: pointer;'
class='PrintButton' />" ToolTip="Print" OnClientClick="if ($('.txtValue').val()
!= '1') { $('.txtValue').val('1'); alert('Warning: Please enable pop-ups for
this site!'); }" />
此方法在 ajax 和回发中存在。
干杯