我使用qtip jquery插件添加工具提示。我可能會在整個網站上添加50-60個工具提示。如何創建'JQuery'函數調用並將數據傳遞給它們?
我發現現在這樣做的方式是反覆剪切/粘貼jQuery代碼。例如:
// First, setup a tool tip for 'Enter Username'.
$("input#user_login").qtip({
content: 'Enter username',
position: {
corner: {
target: 'rightMiddle',
tooltip: 'leftMiddle'
}
},
style: {
border: {
width: 1,
radius: 3,
color: '#0066CC'
},
width: 200,
name: 'blue'
}
});
現在,重複所有的'名字'。似乎毫無意義。
$("input#user_login").qtip({
content: 'Enter First Name',
position: {
corner: {
target: 'rightMiddle',
tooltip: 'leftMiddle'
}
},
style: {
border: {
width: 1,
radius: 3,
color: '#0066CC'
},
width: 200,
name: 'blue'
}
});
如何創建一個函數我可以將顯示文本傳遞給?
實施,正在工作,正是我在想什麼。謝謝! – 2010-11-09 20:28:52