我正试图通过cfm中的按钮在cfc中打开一个模态。这是我到目前为止所拥有的。我需要改变什么?
<button type="button" class="btn btn-success" id="openModal" data-a="openmodal">Add</button>
$(document).on('click', '#openModal', function(){
var a= $(this).data('a');
$.ajax({
url:'components/index.cfc?method=doShowModal&a=' + a,
success:function(){
$("#myModal").modal('show');
}
});
});
<cffunction name="doShowModal" access="remote">
<cfargument name="a" required="true" />
<cfsavecontent variable="modal">
modal will be here
</cfsavecontent>
<cfreturn modal />
</cffunction>