iT邦幫忙

0

(已解決)Autocomplete textarea

  • 分享至 

  • xImage

大家好,
想請教一下,
下面這個範例的第一個 textarea 使用 Autocomplete 可以成功,
但如果透過按紐再顯示出來的第二個 textarea 使用 Autocomplete 為什麼無法成功呢?
請問應該如何修改才能讓第二種方式也可以成功使用 Autocomplete?
謝謝/images/emoticon/emoticon41.gif

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI Autocomplete - Multiple values</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<script>
$(function() {
	var availableTags = [
		"ActionScript",
		"AppleScript",
		"Asp",
		"BASIC",
		"C",
		"C++",
		"Clojure",
		"COBOL",
		"ColdFusion",
		"Erlang",
		"Fortran",
		"Groovy",
		"Haskell",
		"Java",
		"JavaScript",
		"Lisp",
		"Perl",
		"PHP",
		"Python",
		"Ruby",
		"Scala",
		"Scheme"
	];
	function split( val ) {
		return val.split( /,\s*/ );
	}
	function extractLast( term ) {
		return split( term ).pop();
	}

	$( "#tags" )
		// don't navigate away from the field on tab when selecting an item
		.bind( "keydown", function( event ) {
			if ( event.keyCode === $.ui.keyCode.TAB &&
				$( this ).autocomplete( "instance" ).menu.active ) {
					event.preventDefault();
				}
			})
		.autocomplete({
			minLength: 0,
			source: function( request, response ) {
				// delegate back to autocomplete, but extract the last term
				response( $.ui.autocomplete.filter(
					availableTags, extractLast( request.term ) ) );
			},
			focus: function() {
				// prevent value inserted on focus
				return false;
			},
			select: function( event, ui ) {
				var terms = split( this.value );
				// remove the current input
				terms.pop();
				// add the selected item
				terms.push( ui.item.value );
				// add placeholder to get the comma-and-space at the end
				terms.push( "" );
				this.value = terms.join( ", " );
				return false;
			}
		});
});
function clickme(){
	var result = "<textarea id='tags'></textarea>";
	document.getElementById('all').innerHTML = result;
}
</script>
</head>

<body>
<div class="ui-widget">
<label for="tags">Tag programming languages: </label>
<br>
<textarea id="tags"></textarea>
<br>
<button onclick="clickme()">Click me</button>
<p id="all"></p>
</div>
</body>
</html>

參考:Autocomplete textarea with multiple values

看更多先前的討論...收起先前的討論...
id 只能有一個 新增的 textarea 要改變 id 然後綁定事件
你上面執行的綁定並不會綁定後來新增的元素
用class啦,可以多個元素使用同一個class,一個元素也可以使用多個class(用空白分隔即可)
因為你後來的 textarea 是透過 js 產生的,而不是一開始就在html 內生成並綁定。
只能在後來產生的 textarea 再去綁定一次。
小斑 iT邦新手 3 級 ‧ 2020-12-28 15:36:34 檢舉
謝謝大家的回覆,順利解決問題了。
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 個回答

1
㊣浩瀚星空㊣
iT邦大神 1 級 ‧ 2020-12-28 14:31:24
最佳解答

請記得一個重點。
永遠都不要認為javascript可以重覆id。地雷會炸死你。

如果可以的話,請不要再用id來當取元件的依據了

最後,元件是可以自定義屬性的。它是可以重覆地!!
但雖然說可以重覆。也要懂得jquery取元件的依據原理是什麼。

要不然,雷會炸死你。

小斑 iT邦新手 3 級 ‧ 2020-12-28 15:36:50 檢舉

謝謝回覆,順利解決問題了。

我要發表回答

立即登入回答