输入文本更改 onclick 按钮值
实际上我想创建一个页面切换器,我需要的只是一个带有文本类型的输入,其中将输入页码,并且我有第二个带有类型按钮和 onclick 值的输入:
<input type="text" value="#number of the page#" />
<input type="button" onclick="_go_page_('cf_pages_form_name1','#number of the page#');" />
我不知道如何获取这个#页码#并使用 javascript 动态地将其放入 onclick 中...请 smb 帮助!
Actually i want to create a page switcher, all i need for this is an input with type text where will be entered the number of the page, and i have the second input with type button and onclick value:
<input type="text" value="#number of the page#" />
<input type="button" onclick="_go_page_('cf_pages_form_name1','#number of the page#');" />
I cant figure it out how to take this #number of the page# and put it in onclick dynamically using javascript... please smb help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
假设
number
是文本字段的 id。您可以像这样获取文本字段的值:
并传递 onclick 事件
Assuming
number
is the id of the text field.You can get the value of the text field like this:
And pass that is the onclick event
您可以使用页面选择器输入上的 ID 来获取值。
您已使用 jQuery 对其进行了标记,因此我假设您正在使用 jQuery。
You can use an ID on the page selector input to get the value.
You've tagged this with jQuery so I'm assuming you're using jQuery.
让你的输入类型是这样的
然后在 jquery 中尝试这样的事情...
然后将其传递给您的按钮 onclick 函数
lets your input type is like this
then in jquery try something like this...
then pass this to your button onclick function
我将在没有jquery的情况下用“非常容易理解”来回答:
你必须获取第一个输入字段的值。这应该是你的函数要做的。但首先输入字段需要一个 id(fg 'number')。
函数中的代码:
然后您必须将数字放入网址(document.href)中。
i will answer in "very easy to understand" without jquery:
you have to get the value of the first inputfield. this should your function do. but first the inputfield needs an id(f.g. 'number').
code in function:
then you have to put the number into the url (document.href).