0

我在通过小书签附加的表单内的页面上获取可用的 php 变量时遇到问题

书签代码:

<a class="bookmarklet" href="javascript:(function(){var%20script=document.createElement('script');script.src='http://webcreationcentre.com.au/manage/manage.js';document.body.appendChild(script);})()">title checker</a>

manage.js 代码:

(function(){

// the minimum version of jQuery we want
var v = "1.3.2";

// check prior inclusion and version
if (window.jQuery === undefined || window.jQuery.fn.jquery < v) {
    var done = false;
    var script = document.createElement("script");
    script.src = "http://ajax.googleapis.com/ajax/libs/jquery/" + v + "/jquery.min.js";
    script.onload = script.onreadystatechange = function(){
        if (!done && (!this.readyState || this.readyState == "loaded" || this.readyState == "complete")) {
            done = true;
            initMyBookmarklet();
        }
    };
    document.getElementsByTagName("head")[0].appendChild(script);
} else {
    initMyBookmarklet();
}

function initMyBookmarklet() {
    (window.myBookmarklet = function() {

    var title = '<?php echo $data->title; ?>';
    alert(title);

    $('body').append($('<div></div>').css('width','100%')
        .append($('<form></form>')
        .append($('<label for="title">Title</label>'))
        .append($('<input type="text" name="title" value="<?php echo $data->title; ?>">'))));
        // your JavaScript code goes here!
    })();
}

})();
4

1 回答 1

0

如果您的 JS 只是在一个名为的静态文件中,manage.js那么 PHP 将永远不会处理它,因此简单地添加<?php ... ?>到它不会做任何有用的事情。

如果它由PHP 处理的(例如它实际上manage-js.php是PHP 关心)因此必须在生成 JS 的 PHP 文件中进一步定义,并且对您运行小书签的位置一无所知。$data->title

于 2013-03-17T23:39:45.500 回答