带有用户输入值的复选框

时间:2018-12-14 09:38:27

标签: php html html5 checkbox

我需要填写一些复选框,但我希望有1个复选框,以便用户可以自己输入。

我的问题是:如何让用户填写他们自己的输入,以便将其存储在数据库中?

1 个答案:

答案 0 :(得分:0)

这样的事情。

Set doc = ActiveDocument   //More efficient if the Document object will be used more than once
Set section1 = doc.Sections.Add(Range:=myRange)  //Section A | Type Word.Section
Set section1Paras = section1.Paragraphs  //Type Word.Paragraphs
//OR
Set sectionParas = doc.Sections(n).Paragraphs //where n = section index number
Set para = sectionParas.First //OR =sectionParas(n) where n= paragraph index number
$(".addNew").click(function(){
  $(".newInput").show();
});
.newInput{
  display:none;
 }
.addNew{
  color:blue;
}