下拉框形式的DIV标签,如何获取当前选中的文本值?

jQuery写法示例:

  var title = $("b.facility");
  var title = $('#title'); //the element I want to monitor
  title.bind('DOMNodeInserted', function(e) {
  alert('element now contains: ' + $(e.target).html());
  });

tips:jQuery事件中的change()方法定义和用法:当元素的值发生改变时,会发生 change 事件。该事件仅适用于文本域(text field),以及 textarea 和 select 元素,当用于 select 元素时,change 事件会在选择某个选项时发生。当用于 text field 或 text area 时,该事件会在元素失去焦点时发生。