Javascript中字符串输出html的动态链接
生活随笔
收集整理的這篇文章主要介紹了
Javascript中字符串输出html的动态链接
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
??? 在寫一個應用時,碰到一個問題,我從getJSON里面返回的變量無法放入以字符串形式表示的html中。
$.getJSON('getData.php', {data:"test"}, function(result) { $.each(result, function() { var tr = '<a style="text-decoration:none;" href="http://www.google.com.hk?q="' + this[0] + '>' + this[0] + '</tr>'; $(tr).appendTo("#test"); }); });但是這樣發現href中q的值取不到,整個tr的內容在Firefox中被解析為<a test.value="" href="http://www.google.com.hk?q=" style="text-decoration:none;">test.value</a>。鏈接并不是動態的。
???? 因為不知道Javasript是如何處理這種情況的,于是改變思路,先將鏈接生成好,然后放在href中。
$.getJSON('getData.php', {data:"test"}, function(result) { $.each(result, function() { var href = "http://www.google.com.hk?q=" + this[0];var tr = '<a style="text-decoration:none;" href=' + href + '>' + this[0] + '</tr>'; $(tr).appendTo("#test"); }); });??? 問題解決!
?
?
轉載于:https://www.cnblogs.com/hqjma/p/3171663.html
總結
以上是生活随笔為你收集整理的Javascript中字符串输出html的动态链接的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: create tablespace 与
- 下一篇: struts 2中为什么抽象包不能包含a