如何使用相应的currentItemId获取元素的值

发布于 2024-12-25 03:17:39 字数 505 浏览 0 评论 0原文

我有 currentItemId。我想使用 currentItemId 获取元素的值(其中包含 currentItemId)。是否可以?

目前我正在使用此代码:

function Custom_AddListMenuItems(m, ctx)
{

current = currentItemID;
var temp1 = document.getElementById('current');
alert(temp1);

CAMOpt(m,'AssetDetails (new window)','javascript:window.open(\'http://infpw03403:15000/Lists/Asset%20Repository/DispForm.aspx?ID='+temp1+'\')','/_layouts/images/LIST.GIF');
return false;
}

如果有任何其他方法,请告诉我。

I have currentItemId. I want to use currentItemId to get value of element (which contains currentItemId). Is it possible?

Currently I am using this code:

function Custom_AddListMenuItems(m, ctx)
{

current = currentItemID;
var temp1 = document.getElementById('current');
alert(temp1);

CAMOpt(m,'AssetDetails (new window)','javascript:window.open(\'http://infpw03403:15000/Lists/Asset%20Repository/DispForm.aspx?ID='+temp1+'\')','/_layouts/images/LIST.GIF');
return false;
}

If there is any other method please let me know.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

心是晴朗的。 2025-01-01 03:17:39

您需要将变量(当前)传递给 getElementById 而不是字符串“current”

var temp1=document.getElementById(current);
alert(temp1.value);

You'll need to pass the variable(current) to getElementById instead of the string 'current'

var temp1=document.getElementById(current);
alert(temp1.value);
书信已泛黄 2025-01-01 03:17:39

在 HTML 页面中,元素必须具有 id="currentItemId"。
那么只有您可以使用

var temp1 = document.getElementById(currentItemId).value;

In your HTML page the element must have its id="currentItemId".
Then only you can use

var temp1 = document.getElementById(currentItemId).value;

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文