$(document).ready qtip后 如何在后面动态改变呢?
<script type="text/javascript"> $(document).ready(function () { $("#a_qqweibo").qtip({ content: { text: $("#TxtQQWeibo").val(), title: { text: "提示标题", button: "关闭" } }, position: { my: 'top left', at: 'bottom right' }, show: { event: 'click', modal: false, ready: false }, hide: { event: 'blur', } }); }); </script>$(document).ready( function() { $("#a_qqweibo").qtip({ content: { text: 'DEFAULT' } }); $("#TxtQQWeibo").change( function() { $("#a_qqweibo").qtip('option', 'content.text', $(this).val()); });});