- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我有以下“标签框”代码:
HTML:
<div id="tags">
<input type="text" value="" placeholder="Add a tag" />
</div>
JQuery:
$(document).ready(function(){
$('#tags input').on('focusout',function(){
var txt= this.value.replace(/[^a-zA-Z0-9\+\-\.\#]/g,'');
if(txt) {
$(this).before('<span class="tag">'+ txt.toLowerCase() +'</span>');
$(this).before('<input>').attr({
type: 'hidden',
name: 'tags[]',
value: txt.toLowerCase();
}
this.value="";
}).on('keyup',function( e ){
if(/(188|13)/.test(e.which))
$(this).focusout();
});
$('#tags').on('click','.tag',function(){
$(this).remove();
});
});
我正在使用隐藏输入将标签发送到服务器。单击提交按钮后,表单将我重定向到另一个 .php 页面。我正在尝试使用 var_dump($_POST['tags']),
在 php 端访问,但结果是数组 (size=1) 0 => 字符串 '' (长度=0).
有人可以帮忙吗?
最佳答案
您可以使用隐藏输入将标签发送到服务器,这不会使任何输入在页面上可见,但会在您提交表单时发送。
$(document).ready(function(){
$('#tags input').on('focusout',function(){
var txt= this.value.replace(/[^a-zA-Z0-9\+\-\.\#]/g,'');
if(txt) {
$(this).before('<span class="tag">'+ txt.toLowerCase() +'</span>');
$(this).before('<input>').attr({
type: 'hidden',
name: 'tags[]',
value: txt.toLowerCase()
});
}
this.value="";
}).on('keyup',function( e ){
if(/(188|13)/.test(e.which))
$(this).focusout();
});
$('#tags').on('click','.tag',function(){
$(this).remove();
});
});
然后在 php 端访问 var_dump($_POST['tags']);
。
关于javascript - 如何从 "Tags box"获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34481132/
这个问题在这里已经有了答案: final keyword in method parameters [duplicate] (9 个回答) 关闭 8 年前。 在此示例中,声明 Object fina
我的目标:是通过我的函数更新字段获取选定值并使用函数输出值运行它。 问题:当我从列表中选择值时,它不会触发函数,也不会更新字段。 感谢您的帮助。 HTML 12 14 16 18 20 22 24
我有一本具有这种形式的字典: myDict = {'foo': bar, 'foobar baz': qux} 现在,我想拆分字典键中的空格,使其成为下一个键并获取值(重复)。 myDictRev1
vector a; vector b; int temp_holder; cout > temp_holder) a.push_back(temp_holder); cout > temp_h
Java 的开发过程中免不了与 Date 类型纠缠,准备总结一下项目经常使用的日期相关操作,JDK 版本 1.7,如果能够帮助大家节约那么几分钟起身活动一下,去泡杯咖啡,便是极好的,嘿嘿。当然,我
我正在使用 jquery ui 日期选择器来获取 fromDate 和 toDate 以下是from日期的代码 $("#from_date").datepicker({
我是一名优秀的程序员,十分优秀!