作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
更新:
在我的代码隐藏代码中,我有公共(public)变量和像这样的assing
public string Id { get { return Request.QueryString["id"].ToString(); } }`
在.aspx页面中我试图访问
$(this).attr("EmployeeId", Id);
收到错误名称
'Id' does not exist in the current context
结束更新
我有两个 aspx 页面:
1) employee.aspx
2) employee_detail.aspx
如何将动态 ID 从一个页面传递到另一个页面
以下代码位于employee.aspx
页面
//more code here..
//but to relvant to my question is here...
var submitButton = function() {
//more code here...
if(employeeId != ""){ //redirecting here...
window.location.href = "employee_detail.aspx";
}
}
所以在employee_detail.aspx
页面中我有一个jquery函数,目前我正在对id进行硬编码像这样的东西:
<script type="text/javascript">
$(document).ready(function () {
var id = 'A42345'; //hardcoded....
$(this).attr("EmployeeId", id);
</script>
所以我的问题是,我正在寻找一种从employee.aspx
传递ID并在employee_detail.aspx
我想过这样做,但出于安全原因,我不想在网址中公开 id:
window.location.href = "mypage.aspx?id = " + id;
最佳答案
您应该认真考虑实现 session 并将用户 ID 存储在 session 变量中,而不是像这样手动传递它。阅读此内容:http://msdn.microsoft.com/en-us/library/ms178581.aspx
但是如果您坚持,您可以使用 jQuery 将数据 POST 到第二页,而不是使用 GET,然后在服务器 (ASP) 端将 POST 变量值回显到 Javascript。
关于javascript - 如何将动态 ID 传递给 JQuery 中的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10112907/
我是一名优秀的程序员,十分优秀!