2012-11-21 70 views
-1

我想利用這個源代碼我:jQuery的自動標籤不工作

<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

而且我運行php本地主機。

它不工作,我的問題在哪裏?

+3

它以什麼方式不起作用? – Blazemonger

回答

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

我發現我的問題:

我必須要改變SRC = 「/ lib目錄/ jq.js」 爲src = 「LIB/jq.js」 和同對於秒:D