我剛剛實施tiptip,發現它很棒。現在我想製作一個表單並將其用在tiptip工具提示中,以便用戶可以填寫並提交它。在Tiptip中創建並提交表單
我已經創建tiptip作爲
$('.div').tipTip({
maxWidth: 1000,
defaultPosition: 'right',
content: function (e) {
$.ajax({
url: 'tets.php',
datatype: JSON,
success: function (response) {
$('#tiptip_content').html(response);
$('body').append(response).fadeIn('1000');// the var e is the callback function data (see above)
}
});
return 'Please wait...'; // We temporary show a Please wait text until the ajax success callback is called.
}
});
我得到我提示的形式。現在,只要我把鼠標放在裏面,它就會消失(顯然,它是最後的工具提示)。有什麼辦法做我想要實現的?
我的HTML
<div class="div">Hover on Me</div>
tets.php
<form id = "testForm" method="post" action="newEmptyPHP.php">
<table width="400" border="0" align="center" cellpadding="5" cellspacing="0">
<tr>
<td width="150">Username</td>
<td width="250"><input name="username" type="text" class="textfield" /></td>
</tr>
<tr>
<td>Password</td>
<td><input name="password" type="password" class="textfield" /></td>
</tr>
<tr>
<td> </td>
<td><input name="remember" type="checkbox" value="d"> Remember me</td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="login" value="Login" /></td>
</tr>
</table>
</form>
你可以做一個[小提琴](http://jsfiddle.net)並解釋你的問題? – 2013-02-16 10:24:37
我看不到任何'
如何包含我下載的外部js庫?還有我用來處理AJAX請求的其他php文件? – 2013-02-16 10:30:31