| 123456789101112131415161718192021222324252627282930 |
- dialog_parameter = {};
- function dialog_listTalk_init() {
- $('#result').html('');
- $('#content').html('');
- var str = '<table border="1" width="100%">';
- str += '<tr><td colspan="2"><a href="#" id="list">list</a></td></tr>';
- str += '<tr><td>person:</td><td><input type="text" id="person" style="width:95%"/></td></tr>';
- str += '</table>';
- $('#content').html(str);
- $('#list').click(function() {
- dialog_listTalk($('#person').val());
- });
- }
- function dialog_listTalk(person) {
- $('#result').html('');
- $.ajax({
- type : 'get',
- dataType : 'json',
- url : '../jaxrs/dialog/list/talk/person/' + person,
- contentType : 'application/json; charset=utf-8',
- xhrFields : {
- 'withCredentials' : true
- },
- crossDomain : true
- }).always(function(json) {
- $('#result').html(JSON.stringify(json, null, 4));
- });
- }
|