我想将这个源代码用于我的:
<textarea id="textarea" class="example" rows="1"></textarea>
<div style="margin-top: 20px">
<input type="text" id="tagname" placeholder="tag name" />
<button id="addtag" class="btn">Click to add tag</button>
</div>
<script type="text/javascript">
$('#textarea').textext({ plugins: 'tags' });
$('#addtag').bind('click', function(e)
{
$('#textarea').textext()[0].tags().addTags([ $('#tagname').val() ]);
$('#tagname').val('');
});
</script>
此外,我已经添加了带有此标记的jquery和标记脚本:
<script charset="utf-8" type="text/javascript" src="/lib/jq.js"></script>
<script charset="utf-8" type="text/javascript" src="/lib/tagm.js"> </script>
我想使用此源代码:http://textextjs.com/manual/examples/tags-adding.html
我使用Localhost在php上运行。
它不起作用,我的问题在哪里?
答案 0 :(得分:0)
您需要添加对TextText JS的引用。将其添加到您的页面:
<script src="http://bundlejs.com/alexgorbatchev/products/textext/1.3.1?compress=true&bundles=core,ajax,arrow,autocomplete,filter,focus,prompt,suggestions,tags" type="text/javascript" charset="utf-8"></script>
答案 1 :(得分:-1)
我发现了我的问题:
我必须将src =“/ lib / jquery.js”更改为src =“lib / jquery.js”,并将其更改为sec:D