This question already has an answer here:
Want value of $bhai in javascript
                            
                                (1个答案)
                            
                    
                3年前关闭。
        

    

#!/bin/sh

echo "Content-type: text/html"
echo ""
echo '<html>'
echo '<head>'
echo '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">'
echo '</head>'
echo '<body><center><br><h3 align='center'>STATUS</h3></br></center>'
list=$(ls -l /tmp | grep "^d" | awk -F" " '{print $9}')
list1=$(echo $list | wc -w)
i=1
while [ $i -le $list1 ]
do
    bhai=$(echo $list | cut -d' ' -f$i)
    echo '<a href="#" onclick="myFunction(); return false;" id="movie" style="font-size: 30px; text-decoration: none; margin-left: 1cm">'$bhai'</a></font><br>'
    i=$((i+1))
done
echo '
    <script type="text/javascript">
        function myFunction () {
            var mtype = document.getElementById("movie").text;
        alert("Hi");
        alert(mtype);
        }
    </script>'
echo '</body></html>'
exit 0


这段代码基本上在目录中显示文件夹列表,并且由于href属性,所有目录都变成了链接。如果单击该链接,它将打开该目录并显示所选目录的文件夹。
这段代码显示了唯一的第一个目录,如果我单击任何链接,警报只会给我第一个目录的名称。

 var mtype = document.getElementById("movie").text;


我是新手,请为此提供帮助。
提前致谢

最佳答案

尝试document.getElementById("movie").text;

或者如果您想打印变量,请尝试

 echo '<a href="#" onclick="myFunction(); return false;" id="movie" style="font-size: 30px; text-decoration: none; margin-left: 1cm">$bhi</a><br>';


跳过$ bhai之前和之后的单引号



function myFunction () {
    var mtype = document.getElementById("movie").text;
    alert("Hi");
    alert(mtype);
}

<a href="#" onclick="myFunction(); return false;" id="movie" style="font-size: 30px; text-decoration: none; margin-left: 1cm">'$bhai'</a></font>

09-25 19:13