我想要的是将input box
内的swal box
设为id
txttags
,该属性具有tagsInput:-
属性http://xoxco.com/projects/code/tagsinput/
。我正在使用tagsinput版本1.3.3和sweetalert 1。
swal({
content: {
element: "input",
attributes: {
type: "text",
id: "txttags",
class:"tags form-control",
},
},
title: "Add/Edit/Delete Tags",
text: "Please start typing...",
buttons: true
});
这是实现标签输入的代码。
$('#txttags').tagsInput({
'width': 'auto',
'interactive': true,
'defaultText': 'Start typing...',
});