本文介绍了如何在jQuery Tokeninput中添加一个占位符?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何将占位符添加到jQuery Tokeninput字段?普通的placeholder属性在这里不起作用.

How can I add a placeholder to a jQuery Tokeninput field? A normal placeholder attribute won't work in here.

推荐答案

我认为tokenInput的当前版本支持此功能:

I think the current version of tokenInput supports this:

$(function() {
  $("#elementID").tokenInput("http://www.foo.com/bar", {
  placeholder: 'Place holder text...'
});

这篇关于如何在jQuery Tokeninput中添加一个占位符?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-25 23:29