我如何在 jquery 中表示 document.getElementById('page1:form2:amount') ?
我如何
document.getElementById('page1:form2:amount')
在 jQuery 中
表示我知道我可以用来
$('#amount')
访问 id 数量。 id 数量是
类型,它是输入文本在 Visualforce 页面中的表示方式。要访问此 id,我需要使用页面->表单->id 的层次结构。
感谢
Prady
更新:Visualforce 页面中使用的代码。
<apex:page controller="acontroller" id="page1">
<apex:form id="form2">
<apex:inputText value="{!amt}" id="amount" onchange="calenddate();"/>
</apex:form>
</apex:page>
How can I represent
document.getElementById('page1:form2:amount')
in jQuery
I know I can use
$('#amount')
to access the id amount.
The id amount is an <apex:inputText/>
type which is how an input text is represented in the Visualforce page. To access this id I would need to use the hierarchy of page->form->id.
Thanks
Prady
Update: Code used in Visualforce page.
<apex:page controller="acontroller" id="page1">
<apex:form id="form2">
<apex:inputText value="{!amt}" id="amount" onchange="calenddate();"/>
</apex:form>
</apex:page>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我知道有点晚了,但另一种方法是使用 jQuery 属性以选择器结尾(http://api.jquery.com/attribute-ends-with-selector/)。
您知道您放入 apex 代码中的 id 始终是生成的 id 上的最后一个。所以你可以执行
jQuery('[id$="amount"]')
。其作用是选择 id 属性中以 amount 结尾的部分(您需要确定没有其他字段以这种方式结尾)。
这在过去对我来说非常有效。
I know it's a little bit late, but another way to do it would be with the jQuery Attribute ends with selector (http://api.jquery.com/attribute-ends-with-selector/).
You know that the id that you put in the apex code is always the last one on the generated id. So you can do
jQuery('[id$="amount"]')
.What this does is select the part of the id attribute that ends with amount (you need to be certain there are no other fields end this way).
This has worked perfect for me in the past.
你可以做的是获取表单实例并找到所有输入类型文本(不必要)并从实例
和服务器端代码中获取 id 属性,无论如何它将在客户端转换为标准 HTML 格式并且javascript 只会读取最终的 HTML 标签。因此,请转到源代码并找到替换的确切内容,然后使用该标签在 jQuery 函数中进行搜索
what you can do is get the form instance and find all the input type text(not necessary) and get the id attribute from the instance
and as of your server-side code, anyways it will be converted to standard HTML format on client side and javascript will read the final HTML tags only. so go to source and find what exactly is the replacment for and then use that tag to be searched in the jQuery function
您可以传递选择器,就像使用 CSS 编写它们一样。
由于 jQ 中的选择器从右到左工作,这意味着:找到 id 为 #amount 的元素,其父元素为 id #form2,并确保它们有父元素 #page1,然后才执行某些操作。
有关 jQ 选择器的更多信息 @api.jquery.com
you can pass selectors as if you would write them with CSS.
As selectors in jQ work from right to left it would mean: find element with id #amount which have a parent with id #form2 and make sure that they have a parent #page1 and only then do something.
more on jQ selectors @api.jquery.com