嗨,我试图在我的Wordpress自定义页面中添加Shoretel Microsite生成的php代码。
<?php
$version = "all"; // "all" includes everything
// "products" includes only product information
$style = "2"; // "0" = Use your own Stylesheet
// "1" = St
我需要使用javascript代码将一个html页面的值传递给另一个html javascript函数。如何传值。提前感谢
view.cshtml:
b.on('click', function () {
document.location.href = + '?Id=' + sData; // need to pass the value
});
index.cshtml:
function getId(data) { // i need to get the data here
}
我设置了一个包含表单的div,并使用ajax将其设置为post,然后在div中返回结果,如下所示
$(document).ready(function(){
$("#guestList").validate({
debug: false,
submitHandler: function(form) {
// do other stuff for a valid form
//$('form').attr('id', 'guestList1')
当我的Django表单验证失败时,它会自动返回到表单失败的页面,但我希望它转到页面上的一个html锚点。下面是我的代码:
def detail(request, post_id):
p = get_object_or_404(Post, pk=post_id)
# get all the comments for the post
comments = p.comment_set.all().order_by('pub_date')
# to add a comment to the post
if request.method==
免责声明:不确定这是否与WordPress相关。
我正在使用检查AJAX在我的WordPress本地主机上是否可以工作。
我的ajax-test.js:
jQuery(document).ready( function($){
$(".ajax-link").click( function(){
var data = {
action: 'test_response',
post_var: 'this will be echoed back'
};