问题标签 [input-field]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
php - OpenCart changes type attributes of inputfields
I'm facing a strange thing here. I'm working on an OpenCart, register form (index.php?route=checkout/register
).
I have the form and 2 fields like this:
Now: The browser interprets these 2 fields as:
and
BUT if I change the email field attribute-order like so:
then the fields are truly text types, they don't get transformed.
Attention: I only modify for the first one (email) and after that the email and the telephone are parsed correctly.
I am seeing this unexpected behavior on Firefox, Chrome and Opera,
however, if I copy the inputs in a plain html and view it, they are ok..
Any idea on what is happening, and of course why?
EDIT:
The full HTML that is sent to the browser (retrieved with web-sniffer.net) is in this pastebin: http://pastebin.com/bCXab6Kb
That means that the <input type="text"
fields are already changed when php sends the HTML to the browser.
So, what (why/how) converts the <input type="text">
to type email
/tel
(seemingly based on name attribute) and why does this fail when the input-field's attribute order is changed?
jquery - jQuery on click 不关注只读输入字段(在 Firefox 中)
我正在尝试创建一个输入字段,以实时显示另一个输入字段中的字符数。当用户单击该计数器字段并且该字段是只读的时,我不想将注意力集中在该计数器字段上。在 Chrome 中,该字段没有获得焦点,只有 readonly 是必需的,但在 Firefox 中,当我单击它时它仍然会获得焦点。我试图用例如 blur() 来防止这种情况,但它不起作用。我做错了什么或解决方案是什么?
php - php读取多个输入字段的值并使用这些值更新数据库
我有一个通过 php for 循环动态创建的日历(每天都是一个 div)。在每一天都应该有可能输入一些东西,比如“在假期”或“离开”,最好是通过一个清单。我基本上想要一个日历,它显示数据库中每天的条目(基本上有效),但你也应该能够说“3 月 4 日我不在办公室”并将其保存到数据库中。
我正在努力更新部分。
如何从所有输入字段中获取所有值并将它们更新到数据库中?最好的方法是什么?我应该将所有输入字段包装在一个表单中,然后遍历每个表单吗?
cakephp - cakephp隐藏字段问题
我在名为 add.ctp 的视图中的输入字段存在问题。当输入类型设置为“文本”时,程序顺序正常。但是当我将输入类型更改为“隐藏”时,会显示以下错误:
该请求已成为黑洞。错误:在此服务器上找不到请求的地址。
mod-rewrite 似乎已激活。任何想法,这可能是什么原因?
jquery - 使用 before() 添加的输入字段不会在 focus() 上触发
我有一些代码,我使用该before()
方法在其中插入一个input-field
。但由于某种原因,input-fields
动态创建的不会触发$("input").focus()
.
如何让新的输入字段触发focus()
?
html - JSP错误页面被插入而不是转发?
在尝试对 JSP 进行一些错误处理时,我注意到一些奇怪的行为。
我创建了一个 Myobject 但没有在其中放入任何内容来导致空指针进行测试。
我在我的页面中包含了 errorPage 指令,因此当发生此异常时它应该转到我的错误页面。
实际的错误将发生在表单的输入中:
我看到了 errorpage 的内容,因此 errorpage 指令正在工作,但页面看起来不正常。现在,当我查看页面的源代码时,看起来 errorpage 实际上已插入到我上一页上的此 INITIAL_ACTION 输入的值中,而不是转发:
当然,这在实际错误页面上给了我一些布局/css 问题。任何人都可以解释这种行为或指出我正确的方向吗?
编辑 :
增加页面缓冲区有效。
但这对于我当前的应用程序来说很难确定哪些页面需要它来确保它们的错误处理工作正常。
问题是错误页面中第一个DIV的id-attribute的第一个double quoute被用来关闭它插入位置的value-attribute..
在错误页面的顶部,我添加了一个 html 注释,其中包含双引号 + 解释。现在使用该引号,并且页面的其余部分渲染得很好。
但我不太喜欢我的解决方案,感觉不可靠
javascript - 输入字段未聚焦时删除建议
我正在创建一个自动完成搜索框。当用户在搜索字段之外单击时,建议必须消失。
表单输入字段:
javascript代码:
只要 inputString 少于 2 个字符,或者选择了其中一个建议,“fadeOut”就会使建议消失。
每当有人在输入字段外单击(失去焦点)或未选择建议时,我也需要它来淡出。为了更清楚,一张图片:
例如,当用户单击红点附近的某处时,建议应该消失。我无法让它工作,请帮助?
javascript - JavaScript: Count inputfields in a Div
I have a <div id="inputform">
and in that div
there are multiple <input type="text">
.
How can I count the number of <input>
fields?
variables - Cake PHP 更新视图中的单个字段 - 未定义的变量
我搜索了很长时间,但我没有找到解决我的问题的方法。情况是,我的视图中集成了一些按钮,单击它们会影响更新单个输入字段。问题是我有警告,变量在视图中是未定义的。我理解我为什么以及如何压制它们,但我不确定这是否是一个好的解决方案。有没有更好的方法来解决这个问题?什么是最佳实践?
这是我在视图文件中的代码:
生成按钮会影响新的 preSharedKey。并且 csv 的上传影响了其他字段的更新。控制器的相关代码是这样的:
你能帮我么?