首先,我从Jquery开始,我的问题是一点点noobie,但我没有设法找到解决方案。 我得到了官方的Combobox示例。我改为使用Json源代码。 但我想要2个组合框的实例,其中包含不同的URL源。
(我想我不需要创建第二个Combobox功能只改变来源,告诉我,如果我错了)
这是我的代码:
<div id="etape1">
<div class="ui-widget">
<label>Veuillez selectionner une application: </label>
<select id="combobox_application">
<option value="">Select one...</option>
<option value="Chargement en cours">Chargement en cours</option>
</select>
</div>
<button id="create-user">Ajouter une application</button>
</div>
<div id="etape2" style="display:none">
<div class="ui-widget">
<label>Veuillez selectionner un scenario: </label>
<select id="combobox_scenario">
<option value="">Select one...</option>
<option value="ActionScript">ActionScript</option>
<option value="AppleScript">AppleScript</option>
</select>
</div>
谢谢你的帮助,遗憾的是它不起作用。我在这里:
在我的主页中,得到了这个:
<script>
$(function() {
$('#combobox_application').combobox({
source: function(req,add) {
$.ajax({
url: "?module=gestionApplication&action=getListeApplications",
dataType:"json",
success: function(data, textStatus, XMLHttpRequest){
alert(data);
add(data);
}
});
},
selected: function(event, ui) {
$("#etape2").css('display', 'block');
}
});
$('#combobox_scenario').combobox({
source: function(req,add) {
$.ajax({
url: "?module=gestionApplication&action=getListeScenarios",
dataType:"json",
success: function(data, textStatus, XMLHttpRequest){
alert(data);
add(data);
}
});
}
});
的jquery-combobox.js:
-
(function( $ ) {
$.widget( "ui.combobox", {
_create: function() {
var input,
self = this,
select = this.element.hide(),
selected = select.children( ":selected" ),
value = selected.val() ? selected.text() : "",
wrapper = this.wrapper = $( "<span>" )
.addClass( "ui-combobox" )
.insertAfter( select );
input = $( "<input>" )
.appendTo( wrapper )
.val( value )
.addClass( "ui-state-default ui-combobox-input" )
.autocomplete({
delay: 0,
minLength: 0,
// Need define source in my main js
//~ source: function( request, response ) {
//~ $.ajax({
//~ url: "?module=gestionApplication&action=getListeApplications",
//~ dataType: "json",
//~ success: function( data ) {
//~ response( $.map( data, function( item ) {
//~ return {
//~ label: item.nom,
//~ value: item.nom,
//~ option: this
//~ }
//~ }));
//~ }
//~ });
//~ },
select: function( event, ui ) {
ui.item.option.selected = true;
self._trigger( "selected", event, {
item: ui.item.option
});
},
change: function( event, ui ) {
if ( !ui.item ) {
var matcher = new RegExp( "^" + $.ui.autocomplete.escapeRegex( $(this).val() ) + "$", "i" ),
valid = false;
select.children( "option" ).each(function() {
if ( $( this ).text().match( matcher ) ) {
this.selected = valid = true;
return false;
}
});
if ( !valid ) {
// remove invalid value, as it didn't match anything
$( this ).val( "" );
select.val( "" );
input.data( "autocomplete" ).term = "";
return false;
}
}
}
})
.addClass( "ui-widget ui-widget-content ui-corner-left" );
input.data( "autocomplete" )._renderItem = function( ul, item ) {
return $( "<li></li>" )
.data( "item.autocomplete", item )
.append( "<a>" + item.label + "</a>" )
.appendTo( ul );
};
$( "<a>" )
.attr( "tabIndex", -1 )
.attr( "title", "Show All Items" )
.appendTo( wrapper )
.button({
icons: {
primary: "ui-icon-triangle-1-s"
},
text: false
})
.removeClass( "ui-corner-all" )
.addClass( "ui-corner-right ui-combobox-toggle" )
.click(function() {
// close if already visible
if ( input.autocomplete( "widget" ).is( ":visible" ) ) {
input.autocomplete( "close" );
return;
}
// work around a bug (likely same cause as #5265)
$( this ).blur();
// pass empty string as value to search for, displaying all results
input.autocomplete( "search", "" );
input.focus();
});
},
destroy: function() {
this.wrapper.remove();
this.element.show();
$.Widget.prototype.destroy.call( this );
}
});
})( jQuery );
但这不起作用,选择是好的,但来源似乎没有改变任何东西。
答案 0 :(得分:1)
将代码转换为函数(可以将其放在单独的文件中)
然后传递id,url和amp;在您调用该函数时选择。
例如
$(function() {
createCombobox('#combobox_application','?module=gestionApplication&action=getListeApplications',
function(event, ui) { $("#etape2").css('display', 'block'); }
);
createCombobox('#combobox_scenario','?module=gestionApplication&action=getListeScenarios')
});
修改强>
我想我理解你的问题。
您已在网页上添加了小部件代码。你可以在额外的.js文件中使用它
你只需要这个
$(function() {
$('#combobox_application').combobox({
source: function(req,add) {
$.ajax({
url: "SOME_URL",
dataType:"json",
success: function(data, textStatus, XMLHttpRequest){
add(data);
}
});
},
select: function(event, ui) {
$("#etape2").css('display', 'block');
}});
$('#combobox_scenario').combobox({
source: function(req,add) {
$.ajax({
url: "SOME_URL",
dataType:"json",
success: function(data, textStatus, XMLHttpRequest){
add(data);
}
});
}});
});
不要忘记包含外部.js文件引用