Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的颜色框内,我调用它来制作另一个颜色框:
$.colorbox({href:myurl});
我有一个有效的 url 代替 myurl。我正在尝试查看如何将一个或多个 POST 变量发送到此 url。
谢谢!
Supply the variables you like to send via the data-property
$.colorbox({href:myurl, data:{someVariable:'someValue',anotherVariable:'anotherValue'} });
When data is an object, it will be sended via POST, when it's a string via GET