index.html.js
上传用户:wenllgg125
上传日期:2020-04-09
资源大小:7277k
文件大小:1k
源码类别:

SCSI/ASPI

开发平台:

Others

  1. // JScript source code
  2. //contains calls to silverlight.js, example below loads Page.xaml
  3. function createSilverlight()
  4. {
  5. Silverlight.createObjectEx({
  6. source: "Page.xaml",
  7. parentElement: document.getElementById("SilverlightControlHost"),
  8. id: "SilverlightControl",
  9. properties: {
  10. width: "100%",
  11. height: "100%",
  12. version: "1.1",
  13. enableHtmlAccess: "true",
  14. inplaceInstallPrompt: "true",
  15. background: getQueryString('bg') == '' ? 'white' : '#' + getQueryString('bg')
  16. },
  17. events: {
  18.     //onLoad : OnLoaded
  19. }
  20. });
  21.    
  22. // Give the keyboard focus to the Silverlight control by default
  23.     
  24.     document.body.onload = function() {
  25.       var silverlightControl = document.getElementById('SilverlightControl');
  26.       if (silverlightControl)
  27.       silverlightControl.focus();
  28.     }
  29.     
  30. }
  31. function getQueryString(queryname) {
  32.     var qKeys = {};
  33.     var re = /[?&]([^=]+)(?:=([^&]*))?/g;
  34.     var matchInfo;
  35.     while(matchInfo = re.exec(location.search)){
  36.     qKeys[matchInfo[1]] = matchInfo[2];
  37.     }
  38.     return typeof(qKeys[queryname])=='undefined'?'':qKeys[queryname];
  39. }
  40. function HighlightCaption(sender, args)
  41. {
  42.     // args can be resolved :(
  43. }
  44. function OnLoaded(sender, args)
  45. {
  46.     sender.Content.PiePage.CallJs = HighlightCaption;
  47. }